update release notes template #80
Workflow file for this run
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' | |
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@v3 | |
with: | |
# pulls all commits (needed for lerna / semantic release to correctly version) | |
fetch-depth: '0' | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- run: npm -v | |
- run: npm config set unsafe-perm true | |
- 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}} |