From 099f3f639e92bd4f479ce94ffa432d124deedb7a Mon Sep 17 00:00:00 2001 From: Morph <39850852+Morph1984@users.noreply.github.com> Date: Tue, 6 Jun 2023 15:05:17 -0400 Subject: [PATCH] github: Remove release workflow --- .github/workflows/{build.yml => verify.yml} | 21 --------------------- 1 file changed, 21 deletions(-) rename .github/workflows/{build.yml => verify.yml} (87%) diff --git a/.github/workflows/build.yml b/.github/workflows/verify.yml similarity index 87% rename from .github/workflows/build.yml rename to .github/workflows/verify.yml index 916717364f..bd4141f56f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/verify.yml @@ -165,24 +165,3 @@ jobs: with: name: android path: artifacts/ - release: - runs-on: ubuntu-latest - needs: [ android ] - if: ${{ startsWith(github.ref, 'refs/tags/') }} - steps: - - uses: actions/download-artifact@v3 - - name: Create release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref_name }} - release_name: ${{ github.ref_name }} - draft: false - prerelease: false - - name: Upload artifacts - uses: alexellis/upload-assets@0.4.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - asset_paths: '["./**/*.tar.*","./**/*.AppImage","./**/*.7z","./**/*.zip","./**/*.apk","./**/*.aab"]'