Skip to content

Make sure changes under deploy trigger publish #2

Make sure changes under deploy trigger publish

Make sure changes under deploy trigger publish #2

name: Publish cht-deploy to npm
on:
push:
branches:
- '**'
paths:
- 'scripts/deploy/**'
jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./scripts/deploy
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Run tests
if: github.ref != 'refs/heads/master'
run: npm test
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --config ./scripts/deploy/.releaserc.json