feat: 增加带认证的 fetch 封装,优化 API 调用逻辑,处理未授权错误并引导用户重新配对 #19
Workflow file for this run
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: Zip Extension | |
| on: | |
| push: | |
| tags: ["v*"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: zip -r perplexity-clipper.zip . -x "*.git*" | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: perplexity-clipper.zip | |
| draft: false | |
| generate_release_notes: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |