Update Rust crate serde_json to 1.0.132 #6981
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: NPM Publisher | |
on: | |
push: | |
branches: | |
- master | |
env: | |
CI: true | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/actions/checkout | |
- uses: actions/[email protected] | |
with: | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. | |
fetch-depth: 0 | |
# Always use the oldest supported Node.js version here: | |
- name: Use Node.js 20.x | |
uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
- name: Install Yarn dependencies | |
run: yarn install --immutable | |
- name: Publish NPM packages to the registry | |
run: yarn monorepo-babel-node scripts/publishNPMPackages.js |