Skip to content

build: add npm publish step into release workflow #26

build: add npm publish step into release workflow

build: add npm publish step into release workflow #26

Workflow file for this run

name: Release
on:
push:
banches:
- releases
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: npm ci
- name: Build library
uses: ./.github/actions/build
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
- name: Print version
run: |
echo "The latest version is $(grep version package.json | awk -F: '{ print $2 }' | tr -d \")"
- name: Publish new release
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}