We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i used github action to publish my package. Github action run failed with changeset publish. This is my .yml:
name: Publish on: workflow_run: workflows: [CI] branches: [master] types: [completed] concurrency: ${{ github.workflow }}-${{ github.ref }} permissions: contents: write pull-requests: write jobs: publish: if: ${{ github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: oven-sh/setup-bun@v1 with: bun-version: latest - run: bun install - name: Create Release Pull Request or Publish id: changesets uses: changesets/action@v1 with: publish: bun run release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
And this is error: My script:
"release": "bun bundle && changeset publish --provenance --access public"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When i used github action to publish my package. Github action run failed with changeset publish.
This is my .yml:
And this is error:
My script:
The text was updated successfully, but these errors were encountered: