There was an error while loading. Please reload this page.
1 parent 14993f6 commit bc322a4Copy full SHA for bc322a4
1 file changed
.github/workflows/release.yml
@@ -7,6 +7,9 @@ jobs:
7
build:
8
name: Update Release Branch
9
runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: write
12
+ actions: write
13
steps:
14
- name: "checkout release-candidate"
15
uses: actions/checkout@v6
@@ -19,4 +22,9 @@ jobs:
19
22
run: |
20
23
git fetch
21
24
git reset --hard origin/main
- git push --force origin release
25
+ git push --force origin release
26
+
27
+ - name: "Trigger Docker build on release branch"
28
+ env:
29
+ GH_TOKEN: ${{ github.token }}
30
+ run: gh workflow run docker.yml --ref release
0 commit comments