Skip to content

GH Actions workflow syntax error (#675) #3

GH Actions workflow syntax error (#675)

GH Actions workflow syntax error (#675) #3

Workflow file for this run

name: Deploy
on:
push:
tags: [ 'v*.*.*' ]
branches: master
jobs:
test:
uses: ./.github/workflows/test.yml
deploy:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- run: npm install
- run: npm run build
- run: npx semantic-release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN_GITHUB }}