2024.33.0 #149
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- prod | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
- name: Bootstrap Install | |
run: npm install | |
- name: Build | |
run: npx jskit make Command/jskit | |
- name: Publish | |
run: npm publish --access public builds/io.breakside.jskit/latest/jskit | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |