Skip to content

Commit

Permalink
chore: fix workflows (#1082)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek authored Oct 25, 2024
1 parent 92d68c1 commit 59ab363
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: npm i extract-changelog-release
- name: Generate Release Body 📋
run: npx extract-changelog-release > RELEASE_BODY.md
uses: ncipollo/release-action@v1
- uses: ncipollo/release-action@v1
with:
bodyFile: 'RELEASE_BODY.md'
prerelease: true
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- '!v[0-9]+.[0-9]+.[0-9]+-?**'
jobs:
release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:
run: npm i extract-changelog-release
- name: Generate Release Body 📋
run: npx extract-changelog-release > RELEASE_BODY.md
uses: ncipollo/release-action@v1
- uses: ncipollo/release-action@v1
with:
bodyFile: 'RELEASE_BODY.md'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 59ab363

Please sign in to comment.