chore: bump version to 1.6.2 in package.json and comment out upload s… #25
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: npm build and publish | |
| # 执行脚本的生命周期 | |
| on: | |
| #选择在 push 到 github 时触发工作流 | |
| push: | |
| #分支可以选择多个 | |
| branches: [main] | |
| # 一个 workflow 可以有多个 job | |
| jobs: | |
| build: | |
| permissions: | |
| id-token: write | |
| contents: write | |
| # 指定操作系统为'ubuntu-latest' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Version Check | |
| id: check | |
| uses: EndBug/version-check@v2 | |
| with: | |
| diff-search: true | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| if: steps.check.outputs.changed == 'true' | |
| - name: Node env setup | |
| uses: actions/setup-node@v4 | |
| if: steps.check.outputs.changed == 'true' | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| registry-url: 'https://registry.npmjs.org' | |
| - run: pnpm i | |
| if: steps.check.outputs.changed == 'true' | |
| - run: pnpm run build | |
| if: steps.check.outputs.changed == 'true' | |
| - run: rm -rf dist/.vite | |
| if: steps.check.outputs.changed == 'true' | |
| - name: zip | |
| if: steps.check.outputs.changed == 'true' | |
| uses: montudor/action-zip@v1 | |
| with: | |
| args: zip -qq -r dist.zip dist | |
| # - name: Upload & release | |
| # if: steps.check.outputs.changed == 'true' | |
| # uses: mnao305/[email protected] | |
| # with: | |
| # file-path: dist.zip | |
| # extension-id: hibclclepijigjnfdkmkfhjogfhgicda | |
| # client-id: ${{ secrets.CLIENT_ID }} | |
| # client-secret: ${{ secrets.CLIENT_SECRET }} | |
| # refresh-token: ${{ secrets.REFRESH_TOKEN }} | |
| - name: Upload & release Edge | |
| if: steps.check.outputs.changed == 'true' | |
| uses: wdzeng/edge-addon@v2 | |
| with: | |
| product-id: 84da9219-5205-4a1a-8daf-84e6f82b3eda | |
| zip-path: dist.zip | |
| api-key: ${{ secrets.EDGE_API_KEY }} | |
| client-id: ${{ secrets.EDGE_CLIENT_ID }} |