Skip to content

v2.31.7

v2.31.7 #20

Workflow file for this run

---
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#######################################
# Start the job on all push to master #
#######################################
name: "Build & Deploy - RELEASE"
on:
release:
# Want to run the automation when a release is created
types: ["created"]
permissions: read-all
concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
cancel-in-progress: true
###############
# Set the Job #
###############
jobs:
deploy:
runs-on: ubuntu-latest
permissions: read-all
environment:
name: release
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/[email protected]
with:
node-version: 20.x
registry-url: "https://registry.npmjs.org"
# Defaults to the user or organization that owns the workflow file
scope: rubenhalman
- run: npm clean-install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKENX }}