fix(graph): package.json-lock #31
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: "publish" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
bump-version: | |
name: "publish" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout source code" | |
uses: "actions/checkout@v2" | |
with: | |
ref: ${{ github.ref }} | |
# Setup Node.js | |
- name: "Setup Node.js" | |
uses: "actions/setup-node@v1" | |
with: | |
node-version: 18 | |
# Install packages with yarn | |
- name: "Install" | |
run: npm i | |
- name: "Build" | |
run: npm run build | |
# Automated Version Bump | |
- name: "Automated Version Bump" | |
uses: "phips28/gh-action-bump-version@master" | |
with: | |
tag-prefix: "" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: npm publish client | |
run: | | |
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN | |
npm publish "dist-client/" --access=public | |
env: | |
CI: true | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
# Publish the package | |
- name: npm publish main | |
run: | | |
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN | |
npm publish --access=public | |
env: | |
CI: true | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |