Skip to content

release: v0.20.0

release: v0.20.0 #15

Workflow file for this run

name: Release Addon
on:
push:
paths:
- 'packages/valaxy-addon-*/package.json'
permissions:
contents: write
id-token: write
jobs:
release-addon:
if: contains(github.event.head_commit.message, 'release(addon-')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
run_install: true
# after pnpm
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
cache: pnpm
- name: Publish Addon
run: |
COMMIT_MSG="${{ github.event.head_commit.message }}"
PATTERN="release(addon-*): *"
if [[ $COMMIT_MSG == $PATTERN ]]; then
ADDON_NAME=$(echo $COMMIT_MSG | cut -d'(' -f2 | cut -d')' -f1)
cd packages/valaxy-$ADDON_NAME
npm publish
fi
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_CONFIG_PROVENANCE: true