Skip to content

Commit 6bcab84

Browse files
committed
Merge remote-tracking branch 'origin/dev' into dev
2 parents 5f55268 + d56611e commit 6bcab84

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)