All checks were successful
Pull request change / publish (pull_request) Successful in 10s
21 lines
482 B
YAML
21 lines
482 B
YAML
name: Push to main
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: debian-bullseye
|
|
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: version tag
|
|
uses: https://git.thorup.us/actions/version_tag@v1
|
|
- name: npm publish
|
|
uses: https://git.thorup.us/actions/npm_publish@v1
|
|
with:
|
|
npm_repo_key: ${{ secrets.NPM_REPO_KEY }}
|
|
npm_repo_domain: ${{ variables.NPM_REPO_DOMAIN }}
|