Skip to content

testing gh actions->update npm token #5

testing gh actions->update npm token

testing gh actions->update npm token #5

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}