Release & Publish to NPM #6
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 & Publish to NPM | |
on: workflow_dispatch | |
jobs: | |
release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: oven-sh/[email protected] | |
- run: | | |
bun install --frozen-lockfile | |
bun run build | |
- name: Initialize Git user | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Release Workflow" | |
- name: Run release | |
run: npm run release | |
env: | |
PIKPAK_USERNAME: ${{ secrets.PIKPAK_USERNAME }} | |
PIKPAK_PASSWORD: ${{ secrets.PIKPAK_PASSWORD }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |