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: Node.js Package | |
# on: | |
# release: | |
# types: [created] | |
# jobs: | |
# publish-gpr: | |
# runs-on: ubuntu-latest | |
# permissions: | |
# packages: write | |
# contents: read | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 16 | |
# registry-url: https://npm.pkg.github.com/ | |
# - run: npm i | |
# - run: npm run build | |
# - run: npm run client:i | |
# - run: npm run client:build | |
# - run: npm run client:copy | |
# - run: npm run cli:build | |
# - run: npm publish | |
# env: | |
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |