Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Toni500github authored Apr 15, 2024
1 parent c7c1709 commit df10d78
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,26 +51,28 @@ jobs:
name: Create GitHub Release
needs: [build, get-version]
runs-on: ubuntu-latest
permissions: write-all
permissions:
contents: write
outputs:
release-url: ${{ steps.create-release.outputs.upload_url }}
steps:
- name: Create Release
id: create-release
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ncipollo/[email protected]
with:
tag_name: ${{ needs.get-version.outputs.version }}
release_name: TabAUR v${{ needs.get-version.outputs.version }}
tag: ${{ needs.get-version.outputs.version }}
name: TabAUR ${{ needs.get-version.outputs.version }}
draft: false
allowUpdates: true
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}

upload-binaries:
name: Upload binaries to Githib relase
runs-on: ubuntu-latest
needs: [release, get-version]
permissions: write-all
permissions:
contents: write
steps:
- uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit df10d78

Please sign in to comment.