Manually publish to NPM - Apply changeset in the workflow. #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manually publish to NPM - Apply changeset in the workflow. | |
# publish only when package json has changed - assuming version upgrade | |
on: | |
workflow_dispatch: | |
jobs: | |
publish: | |
if: github.event.repository.owner.login == 'react18-tools' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org | |
- name: Setup Git | |
run: | | |
git config --global user.name "mayank1513" | |
git config --global user.email "[email protected]" | |
- run: npm i -g pnpm && pnpm i | |
name: Install dependencies | |
# fail and not publish if any of the unit tests are failing | |
- name: Test | |
run: pnpm test | |
- name: clean up working directory | |
run: git status && git clean -f -d && git status | |
- name: Copy Readme file | |
run: cp ./README.md ./lib # todo: uncomment this line while rebranding | |
- name: Apply changesets, publish and create release, branches and tags | |
run: node ./scripts/manual-publish.js | |
env: | |
BRANCH: ${{ github.ref_name }} | |
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
token: ${{ secrets.GITHUB_TOKEN }} |