fix: 阅读模式打开再关闭之后,导航栏消失的问题 (#928) #764
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: Sync Coding | |
| on: | |
| push: | |
| release: | |
| types: [published] | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Curl | |
| run: | | |
| curl -u ${{ secrets.CODING_TOKEN_API }} \ | |
| -v -X POST 'https://volantis-x.coding.net/api/cci/job/387490/trigger' \ | |
| -H 'Content-Type: application/json' \ | |
| -d ' | |
| { | |
| "envs": [ | |
| { | |
| "name": "BRANCH", | |
| "value": "${{ github.ref_name }}", | |
| "sensitive": 0 | |
| } | |
| ] | |
| }' |