Skip to content

Commit

Permalink
Github action release now creates release and uploads artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhakansson committed May 1, 2024
1 parent af21d02 commit dd5092c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ jobs:

release:
runs-on: ubuntu-latest
permissions:
contents: write
needs: ['build']
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Create Release
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/create-release@v1
uses: ncipollo/release-action@v1
with:
draft: true
tag_name: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
artifacts: "*"

0 comments on commit dd5092c

Please sign in to comment.