File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 - master
66 tags :
77 - ' *'
8- workflow_call :
8+ workflow_run :
9+ workflows : ["Manual Release Version"]
10+ types :
11+ - completed
912
1013permissions :
1114 contents : write
1215
1316jobs :
1417 deploy :
1518 runs-on : ubuntu-latest
19+ if : ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
1620 steps :
1721 - uses : actions/checkout@v6
1822 with :
3135 git config user.email "github-actions[bot]@users.noreply.github.com"
3236 - name : Deploy documentation
3337 run : |
34- if [[ $GITHUB_REF == refs/tags/* ]] || [[ $GITHUB_EVENT_NAME == "workflow_call " ]]; then
38+ if [[ $GITHUB_REF == refs/tags/* ]] || [[ $GITHUB_EVENT_NAME == "workflow_run " ]]; then
3539 VERSION=$(grep "version=" addons/admob/plugin.cfg | cut -d'"' -f2 | sed 's/^v//' | cut -d. -f1,2)
3640
3741 mike deploy --push --update-aliases $VERSION stable
Original file line number Diff line number Diff line change 5454 VERSION : ${{env.PLUGIN_VERSION}}
5555 COMMIT_HASH : ${{ github.sha }}
5656 run : |
57- python3 static/workflow_files/push.py
58-
59- deploy-docs :
60- needs : release-version
61- uses : ./.github/workflows/docs.yml
57+ python3 static/workflow_files/push.py
You can’t perform that action at this time.
0 commit comments