ci: add workaround for verifyConditions of npm #7
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: CI | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Build project | |
run: bun run build | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # Publish GitHub Releases | |
issues: write # Comment on issues | |
pull-requests: write # Comment on PRs | |
id-token: write # OIDC token for npm provenance | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/iron' | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Build project | |
run: bun run build | |
# Workaround for verifyConditions step of @semantic-release/npm | |
- run: cp ../package.json . | |
working-directory: dist | |
- name: Release | |
run: bunx semantic-release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |