Skip to content

chore(release): v1.9.0 #3

chore(release): v1.9.0

chore(release): v1.9.0 #3

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
concurrency:
group: Release
cancel-in-progress: false
jobs:
check-formatting:
uses: ./.github/workflows/check-formatting.yml
lint:
uses: ./.github/workflows/lint.yml
check-dependencies:
uses: ./.github/workflows/check-dependencies.yml
check-spelling:
uses: ./.github/workflows/check-spelling.yml
test:
uses: ./.github/workflows/test.yml
npm:
needs:
- lint
- check-dependencies
- check-spelling
- check-formatting
- test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: ./.github/actions/prepare
- name: Build
run: pnpm run build
- name: Release
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
# echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc
# npm publish --access public