Skip to content

ci(test): update workflow event #1

ci(test): update workflow event

ci(test): update workflow event #1

Workflow file for this run

name: Publish Dummy
on:
push:
branches:
- 'th/ci-test'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: npm lib:install
- run: npm run lib:build
- run: cd lib
# - run: npm publish --tag latest --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}