Skip to content

Commit

Permalink
don't make action fail
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO committed Jul 23, 2024
1 parent d2de2e2 commit fefe92b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/enter-pre-release-mode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@ jobs:
run: pnpm install

- name: Enter pre-release mode
id: enter
run: |
set +e
pnpm changeset pre enter dev
echo "exitcode=$?" >> $GITHUB_OUTPUT
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Add changes
if: ${{ steps.enter.outputs.exitcode == '0' }}
uses: EndBug/add-and-commit@v9
with:
add: '[".changeset"]'
Expand Down

0 comments on commit fefe92b

Please sign in to comment.