From c726b9ce23980b950d7a812adaa7549226a782b0 Mon Sep 17 00:00:00 2001 From: Anthony Bilinski Date: Thu, 17 Feb 2022 11:33:02 -0800 Subject: [PATCH] fix(CI): Don't upload Windows setup exe to nightly release Matches previous behaviour from travis. Avoids spreading a possibly buggy nightly around a tester's system. --- .github/workflows/build-test-deploy.yaml | 26 ------------------------ 1 file changed, 26 deletions(-) diff --git a/.github/workflows/build-test-deploy.yaml b/.github/workflows/build-test-deploy.yaml index c0186039f..a3124738d 100644 --- a/.github/workflows/build-test-deploy.yaml +++ b/.github/workflows/build-test-deploy.yaml @@ -374,19 +374,6 @@ jobs: replacesArtifacts: true token: ${{ secrets.GITHUB_TOKEN }} artifacts: "setup-qtox-nightly-x86_64-${{ matrix.build_type }}.zip" - - name: Rename exe for nightly upload - if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.build_type == 'release' - run: cp package-prefix/setup-qtox.exe setup-qtox-nightly-x86_64-release.exe - - name: Upload exe to nightly release - if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.build_type == 'release' - uses: ncipollo/release-action@v1 - with: - allowUpdates: true - tag: nightly - prerelease: true - replacesArtifacts: true - token: ${{ secrets.GITHUB_TOKEN }} - artifacts: "setup-qtox-nightly-x86_64-release.exe" build-windows-i686: name: Windows i686 runs-on: ubuntu-latest @@ -445,19 +432,6 @@ jobs: replacesArtifacts: true token: ${{ secrets.GITHUB_TOKEN }} artifacts: "setup-qtox-nightly-i686-${{ matrix.build_type }}.zip" - - name: Rename exe for nightly upload - if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.build_type == 'release' - run: cp package-prefix/setup-qtox.exe setup-qtox-nightly-i686-release.exe - - name: Upload exe to nightly release - if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.build_type == 'release' - uses: ncipollo/release-action@v1 - with: - allowUpdates: true - tag: nightly - prerelease: true - replacesArtifacts: true - token: ${{ secrets.GITHUB_TOKEN }} - artifacts: "setup-qtox-nightly-i686-release.exe" build-osx: name: macOS runs-on: macos-10.15