chore: bump version to 9.0.0 w/ changelog #5
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: | |
tags: | |
- '*.*.*' | |
# - '[0-9]+.[0-9]+.[0-9]+' | |
# - '*@*.*.*' for NX integration | |
permissions: | |
contents: read | |
packages: write | |
id-token: write # needed for provenance data generation | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'koobiq' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Yarn | |
uses: ./.github/workflows/actions/setup-yarn | |
- name: Build packages | |
run: yarn run build | |
- name: Publish package | |
run: | | |
rm -rf .npmrc && echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN_KOOBIQ" > ~/.npmrc | |
npm run publish:github | |
env: | |
NPM_TOKEN_KOOBIQ: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
MATTERMOST_ENDPOINT_URL: ${{ secrets.MM_WEBHOOK_URL }} | |
MATTERMOST_CHANNEL: ${{ secrets.MM_CHANNEL_NAME }} |