Release #102
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: Release | |
on: | |
workflow_dispatch: | |
jobs: | |
validate: | |
uses: './.github/workflows/validate.yml' | |
secrets: inherit | |
publish: | |
runs-on: ubuntu-22.04 | |
needs: | |
- validate | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/setup | |
- name: Bump and Tag | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "GitHub Actions" | |
pnpx changelogen@latest --release | |
git push | |
git push --tags | |
- name: NPM | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > ~/.npmrc | |
pnpm publish | |
- name: GitHub Release | |
run: pnpx changelogen@latest gh release --token ${{ secrets.GITHUB_TOKEN }} |