mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
* chore: switch to yarn * chore: pointless limitation permalink: http://whatthecommit.com/468a491808723d12de48b079d9092b44 * chore: i can't believe it took so long to fix this. permalink: http://whatthecommit.com/b298fe6d3375ab953abfdb0f1f737826
19 lines
404 B
YAML
19 lines
404 B
YAML
name: NPM / Publish
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
jobs:
|
|
test-and-publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 17
|
|
- run: yarn --immutable
|
|
- run: yarn build:prod
|
|
- uses: JS-DevTools/npm-publish@v1
|
|
with:
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
access: "public"
|