Revert "feat: 添加兼容模式设置以解决 Google 风控导致无法加载字幕的问题" #39
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: Deploy | |
| on: | |
| push: | |
| # Sequence of patterns matched against refs/heads | |
| branches: | |
| - dev | |
| permissions: | |
| actions: read | |
| contents: read | |
| jobs: | |
| debug: | |
| uses: ./.github/workflows/dev.yml | |
| secrets: inherit | |
| deploy: | |
| needs: debug | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download artifact | |
| uses: actions/download-artifact@master | |
| with: | |
| name: artifact | |
| - name: Deploy Request | |
| uses: exuanbo/actions-deploy-gist@main | |
| with: | |
| token: ${{ secrets.GIST_TOKEN }} | |
| gist_id: 069cf057ee7b3d82b35e2dcb59ed481e | |
| gist_description: "🍿️ DualSubs: ▶️ YouTube β" | |
| file_path: dist/request.bundle.js | |
| - name: Deploy Reponse | |
| uses: exuanbo/actions-deploy-gist@main | |
| with: | |
| token: ${{ secrets.GIST_TOKEN }} | |
| gist_id: 069cf057ee7b3d82b35e2dcb59ed481e | |
| gist_description: "🍿️ DualSubs: ▶️ YouTube β" | |
| file_path: dist/response.bundle.js |