Skip to content

Commit

Permalink
Merge pull request #358 from loathingKernel/next
Browse files Browse the repository at this point in the history
Workflows: fix pre-release step
  • Loading branch information
loathingKernel authored Dec 27, 2023
2 parents afdc11d + 41e13b4 commit 0689492
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,17 @@ jobs:
if: ${{ inputs.prerelease }}
needs: version
name: Create pre-release
uses: ncipollo/release-action@v1
with:
tag: ${{ needs.version.outputs.version }}
name: Pre-release ${{ github.ref }}
draft: false
prerelease: true
generateReleaseNotes: true
discussionCategory: "Releases"
makeLatest: false
runs-on: ubuntu-latest
steps:
- uses: ncipollo/release-action@v1
with:
tag: ${{ needs.version.outputs.version }}
name: Pre-release ${{ needs.version.outputs.version }}
draft: false
prerelease: true
generateReleaseNotes: true
discussionCategory: "Releases"
makeLatest: false

ubuntu:
needs: version
Expand Down

0 comments on commit 0689492

Please sign in to comment.