formhero/.github/workflows/release.yaml

19 lines
299 B
YAML
Raw Normal View History

2023-03-03 22:45:34 +00:00
name: Release
on:
2023-03-03 23:25:29 +00:00
release:
types:
- published
2023-03-03 22:45:34 +00:00
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build
- run: pnpm test
- run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}