Browse Source

github: Remove release workflow

nce_cpp
Morph 3 years ago
parent
commit
4a8f71e435
  1. 21
      .github/workflows/verify.yml

21
.github/workflows/build.yml → .github/workflows/verify.yml

@ -165,24 +165,3 @@ jobs:
with: with:
name: android name: android
path: artifacts/ 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"]'
Loading…
Cancel
Save