v1.6.0 #94
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: | |
- main | |
- 'v*/main' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
sha: | |
description: The commit hash referring to the commit to check. | |
required: false | |
ref: | |
description: The head branch associated with the pull request. | |
required: false | |
env: | |
NODE_OPTIONS: --max_old_space_size=16384 | |
jobs: | |
build: | |
# 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 | |
- uses: actions/checkout@v4 | |
with: | |
# pulls all commits (needed for lerna / semantic release to correctly version) | |
fetch-depth: '0' | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- run: npm -v | |
- run: npm ci | |
- name: Authenticate with Registry | |
run: | | |
echo "@umbraco-ui:registry=https://registry.npmjs.org/" > .npmrc | |
echo "registry=https://registry.npmjs.org/" >> .npmrc | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc | |
npm whoami | |
env: | |
NPM_TOKEN: ${{ secrets.UMBRACO_PUBLISH_NPM_TOKEN}} | |
- name: Publish package | |
run: npm run lerna:publish | |
env: | |
NPM_TOKEN: ${{ secrets.UMBRACO_PUBLISH_NPM_TOKEN}} |