Skip to content

Commit

Permalink
chore(repo): Fix snapshot releases when in prerelease mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nikosdouvlis committed Nov 7, 2023
1 parent 59336d3 commit 68dabd4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ jobs:
- name: Version packages for snapshot
id: version-packages
run: npm run version:snapshot ${{ steps.extract-snapshot-name.outputs.name }} | tail -1 >> "$GITHUB_OUTPUT"
run: |
# temporarily exit prerelease mode so snapshot works
changeset pre exit || true
npm run version:snapshot ${{ steps.extract-snapshot-name.outputs.name }} | tail -1 >> "$GITHUB_OUTPUT"
- name: Build release
if: steps.version-packages.outputs.success == '1'
Expand Down

0 comments on commit 68dabd4

Please sign in to comment.