v.0.0.1 #1
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: Publish new release | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
name: Create NPM release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.release.target_commitish }} | |
- name: Use Node.js 12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
registry-url: https://registry.npmjs.org/ | |
- run: yarn install --frozen-lockfile | |
- run: git config --global user.name "GitHub CD bot" | |
- run: git config --global user.email "[email protected]" | |
- run: yarn version --new-version ${{ github.event.release.tag_name }} --no-git-tag-version | |
# - run: yarn run build | |
# - run: yarn test | |
- run: yarn publish --access public --tag latest | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: git add package.json | |
- run: git commit -m 'Bump version' | |
- run: git push | |
env: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |