🐛 修正回收站同名脚本保存确认文案 (#1622) #1534
This file contains hidden or 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: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/* | |
| - develop/* | |
| paths-ignore: | |
| - ".github/**" | |
| - ".gitignore" | |
| - "**.md" | |
| - "LICENSE" | |
| workflow_dispatch: | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| name: Build | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: Setup pnpm | |
| env: | |
| COREPACK_ENABLE_DOWNLOAD_PROMPT: 0 | |
| run: | | |
| corepack enable | |
| corepack install | |
| pnpm --version | |
| - name: Get pnpm store path | |
| id: pnpm-store | |
| shell: bash | |
| run: echo "path=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT" | |
| - name: Cache pnpm store | |
| uses: actions/cache@v6 | |
| with: | |
| path: ${{ steps.pnpm-store.outputs.path }} | |
| key: ${{ runner.os }}-${{ runner.arch }}-pnpm-${{ hashFiles('package.json', 'pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ runner.arch }}-pnpm- | |
| - name: Package with Node | |
| env: | |
| CHROME_PEM: ${{ secrets.CHROME_PEM }} | |
| run: | | |
| mkdir dist | |
| echo "$CHROME_PEM" > ./dist/scriptcat.pem | |
| chmod 600 ./dist/scriptcat.pem | |
| pnpm i --frozen-lockfile | |
| pnpm run pack | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: production-artifacts | |
| path: | | |
| dist/*.crx | |
| dist/*.zip | |
| - name: Archive extension | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: scriptcat-chrome-extension | |
| path: | | |
| dist/ext/* |