Publish npm packages #139
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 npm packages | |
on: | |
workflow_dispatch: | |
inputs: | |
release: | |
description: stable, canary, or release candidate? | |
required: true | |
type: choice | |
options: | |
- canary | |
- stable | |
- release-candidate | |
type: | |
description: 'Type of package to publish' | |
required: true | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
jobs: | |
bump-version: | |
name: 'Bump Version' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9.5.0 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org/' | |
node-version: 20 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build CLI | |
run: pnpm run build:scripts | |
- name: Build Projects | |
run: pnpm run build --filter=vitnode-backend --filter=vitnode-frontend | |
- name: Run script to bump version | |
run: pnpm run release | |
id: version-bump | |
env: | |
VERSION_TYPE: ${{ github.event.inputs.type }} | |
RELEASE_TYPE: ${{ github.event.inputs.release }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Pre-release | |
if: github.event.inputs.release == 'canary' || github.event.inputs.release == 'release-candidate' | |
run: gh release create ${{ steps.version-bump.outputs.newTag }} --generate-notes --prerelease | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release | |
if: github.event.inputs.release == 'stable' | |
run: gh release create ${{ steps.version-bump.outputs.newTag }} --generate-notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish canary | |
if: github.event.inputs.release == 'canary' | |
run: pnpm publish --access public --filter vitnode-backend --filter vitnode-frontend --filter create-vitnode-app --filter eslint-config-typescript-vitnode --tag canary --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
- name: Publish release candidate | |
if: github.event.inputs.release == 'release-candidate' | |
run: pnpm publish --access public --filter vitnode-backend --filter vitnode-frontend --filter create-vitnode-app --filter eslint-config-typescript-vitnode --tag rc --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
- name: Publish stable | |
if: github.event.inputs.release == 'stable' | |
run: pnpm publish --access public --filter vitnode-backend --filter vitnode-frontend --filter create-vitnode-app --filter eslint-config-typescript-vitnode --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true |