Skip to content

Commit

Permalink
change -n option to --token as this is present in the new docs (#7051)
Browse files Browse the repository at this point in the history
# Pull Request

## 📖 Description

Looks like these options might have changed without a major package update. As such, following the documentation: https://microsoft.github.io/beachball/concepts/ci-integration.html#github-repo-github-actions

## 👩‍💻 Reviewer Notes

This is currently failing publish when triggered from github actions. This may fix the issue.

## ✅ Checklist

### General

<!--- Review the list and put an x in the boxes that apply. -->

- [ ] I have included a change request file using `$ npm run change`
- [ ] I have added tests for my changes.
- [ ] I have tested my changes.
- [ ] I have updated the project documentation to reflect my changes.
- [x] I have read the [CONTRIBUTING](https://github.com/microsoft/fast/blob/master/CONTRIBUTING.md) documentation and followed the [standards](https://github.com/microsoft/fast/blob/master/CODE_OF_CONDUCT.md#our-standards) for this project.
  • Loading branch information
janechu authored Dec 11, 2024
1 parent 94fc64e commit baa307b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd-release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Publish NPM packages
env:
NPM_SECRET_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run publish-ci -n $NPM_SECRET_TOKEN
run: npm run publish-ci -- --token "$NPM_SECRET_TOKEN"

notify:
runs-on: ubuntu-latest
Expand Down

0 comments on commit baa307b

Please sign in to comment.