diff --git a/.github/workflows/changeset-publish.yml b/.github/workflows/changeset-publish.yml index 0b522da..f24dd1f 100644 --- a/.github/workflows/changeset-publish.yml +++ b/.github/workflows/changeset-publish.yml @@ -1,9 +1,8 @@ name: Publish on: - workflow_run: - workflows: [CI] - branches: [main] - types: [completed] + push: + branches: + - "**" concurrency: ${{ github.workflow }}-${{ github.ref }} @@ -13,7 +12,6 @@ permissions: jobs: publish: - if: ${{ github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest steps: - name: Action checkout @@ -42,7 +40,7 @@ jobs: id: changesets uses: changesets/action@v1 with: - publish: yarn release + publish: yarn release --dry-run cwd: lib/js-sdk env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}