2024.9.0+monster #2
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: On Release Created (Publish misskey-js) | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
publish-misskey-js: | |
name: Publish misskey-js | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
strategy: | |
matrix: | |
node-version: [20.16.0] | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Publish package | |
run: | | |
corepack enable | |
pnpm i --frozen-lockfile | |
pnpm build | |
pnpm --filter misskey-js publish --access public --no-git-checks --provenance | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |