diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-11-22 08:57:45 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-11-22 08:57:47 -0800 |
commit | bde45373200414441cf6a81aad3c681978682970 (patch) | |
tree | 552a05bcb52b52c413fc37793dcee5ff62ccd581 /.github | |
parent | 2fb9367afe02cc2837b7a7c3be20f721d8032be7 (diff) | |
download | subsurface-bde45373200414441cf6a81aad3c681978682970.tar.gz |
GitHub Actions: don't add macOS artifacts to release
We now get a working macOS DMG for each CICD release via the webhook -
and the GitHub built .app.zip only worked on the latest macOS and was
near-unusable there.
We still make it available as an artifact of that macIS GitHub action in
case there is some value, but we no longer push it into the GitHub
release artifacts.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac.yml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 11548442b..8df660100 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -87,28 +87,3 @@ jobs: with: name: Subsurface.app path: build/Subsurface.app - - publishRelease: - needs: desktopBuild - runs-on: ubuntu-latest - steps: - - name: checkout sources - uses: actions/checkout@v1 - with: - fetch-depth: 1 - - name: retrieve artifact - uses: actions/download-artifact@master - with: - name: Subsurface.app - - name: create zip file - run: | - zip -r Subsurface.app.zip Subsurface.app - - name: create CI release - if: github.event_name == 'push' - uses: ./.github/actions/release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GITHUB_REPO: ${{ github.repository }} - REF: ${{ github.ref }} - COMMIT: ${{ github.sha }} - BIN1: Subsurface.app.zip |