update p.js #291
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: NPM publish CD workflow | |
on: | |
release: | |
# This specifies that the build will be triggered when we publish a release | |
types: [published] | |
jobs: | |
build: | |
# Run on latest version of ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# "ref" specifies the branch to check out. | |
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted | |
ref: ${{ github.event.release.target_commitish }} | |
# install Node.js | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
# Specifies the registry, this field is required! | |
registry-url: 'https://registry.npmjs.org' | |
# clean install of your projects' deps. We use "npm ci" to avoid package lock changes | |
- run: yarn install | |
# set up git since we will later push to the repo | |
- run: git config --global user.email "[email protected]" && git config --global user.name "$GITHUB_ACTOR" | |
# upgrade npm version in package.json to the tag used in the release. | |
- run: yarn version --new-version ${{ github.event.release.tag_name }} | |
# run tests just in case | |
- run: yarn test:2.0.0 | |
# publish to NPM -> there is one caveat, continue reading for the fix | |
- run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
# push the version changes to GitHub | |
- run: git push | |
env: | |
# The secret is passed automatically. Nothing to configure. | |
github-token: ${{ secrets.GITHUB_TOKEN }} |