Monthly Release #57
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: Monthly Release | |
on: | |
workflow_dispatch: | |
jobs: | |
monthly-release: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
# TEMP: with: ref: main <- removing should use branch that was selected when run | |
- uses: actions/checkout@v4 | |
# setup nodejs | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
cache-dependency-path: package-lock.json | |
# Run the npm install | |
- run: npm ci | |
# Runs a single command using the runners shell | |
# TEMP: removed npm run just-publish to test branch update | |
- name: Run publishing scripts | |
run: | | |
npm run clean | |
npm run package | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} |