Skip to content

Commit 262c621

Browse files
committed
fix: dont exit on commit failure
1 parent c041df2 commit 262c621

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,15 @@ jobs:
3333
run: yarn changeset version
3434

3535
- name: Publish to npm
36-
id: publish_npm
3736
uses: changesets/action@v1
38-
continue-on-error: true
3937
with:
4038
publish: yarn release
4139
env:
4240
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4341
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4442

4543
- name: Commit changes
46-
if: steps.publish_npm.outcome == 'success'
44+
continue-on-error: true
4745
run: |
4846
git config --global user.email "[email protected]"
4947
git config --global user.name "Hop CI"

0 commit comments

Comments
 (0)