We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 90f4b4f + dc4dab7 commit b868da6Copy full SHA for b868da6
1 file changed
.github/workflows/release.yml
@@ -19,6 +19,7 @@ jobs:
19
timeout-minutes: 10
20
permissions:
21
contents: write
22
+ actions: write
23
steps:
24
- uses: actions/checkout@v5
25
@@ -56,3 +57,14 @@ jobs:
56
57
!.git
58
env:
59
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60
+
61
+ - name: Trigger Docker build
62
+ uses: actions/github-script@v8
63
+ with:
64
+ script: |
65
+ github.rest.actions.createWorkflowDispatch({
66
+ owner: context.repo.owner,
67
+ repo: context.repo.repo,
68
+ workflow_id: 'docker.yaml',
69
+ ref: 'v${{ steps.pkg.outputs.version }}',
70
+ })
0 commit comments