File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -425,7 +425,27 @@ jobs:
425425 NUGET_KEY : ${{secrets.NUGET_API_KEY}}
426426 INCLUDE_SYMBOLS : true
427427 TAG_COMMIT : false
428- NO_BUILD : true
428+ NO_BUILD : true
429+ build-docker :
430+ name : Trigger Docker image build
431+ runs-on : ubuntu-latest
432+ needs : [deploy-cdn]
433+ steps :
434+ - name : Get Token
435+ id : get_workflow_token
436+ uses : peter-murray/workflow-application-token-action@v2
437+ with :
438+ application_id : ${{ secrets.CI_APP_ID }}
439+ application_private_key : ${{ secrets.CI_APP_PRIVATE_KEY }}
440+ permissions : " actions:write"
441+ organization : altmp
442+ - name : Trigger Docker build
443+ uses : benc-uk/workflow-dispatch@v1
444+ with :
445+ workflow : build.yml
446+ ref : main
447+ repo : altmp/altv-docker
448+ token : ${{ steps.get_workflow_token.outputs.token }}
429449 create-release :
430450 runs-on : ubuntu-latest
431451 needs : [deploy-cdn, deploy-nuget]
You can’t perform that action at this time.
0 commit comments