Skip to content

Commit

Permalink
Fix release 1d59f71
Browse files Browse the repository at this point in the history
  • Loading branch information
leordev committed May 7, 2024
1 parent 22c4692 commit 905df30
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ jobs:

- name: Check @web5/api Release Flow
id: check_api_release
run: scripts/changesets-api-release-check.sh
# forcing release because of the issue documented here:
# https://github.com/TBD54566975/web5-js/pull/517
# run: scripts/changesets-api-release-check.sh
# removes all the api changesets files to ensure a Version Packages PR is not created
run: |
find .changeset -type f -name "*.md" ! -name "README.md" -exec rm {} +
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KICK_API_RELEASE: ${{ github.event.inputs.initiate_api_release || '' }}
Expand Down

0 comments on commit 905df30

Please sign in to comment.