File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 23
23
steps :
24
24
- name : Checkout repository
25
25
uses : actions/checkout@v4
26
+ with :
27
+ submodules : ' true'
26
28
29
+ - name : Set up QEMU dependency
30
+ uses : docker/setup-qemu-action@v1
31
+
27
32
- name : Set up Docker Buildx
28
33
uses : docker/setup-buildx-action@v3
29
34
Original file line number Diff line number Diff line change @@ -17,10 +17,12 @@ jobs:
17
17
steps :
18
18
- name : Checkout repository
19
19
uses : actions/checkout@v4
20
-
20
+ with :
21
+ submodules : ' true'
22
+
21
23
- name : Set up Docker Buildx
22
24
uses : docker/setup-buildx-action@v3
23
-
25
+
24
26
- name : Log into registry
25
27
uses : docker/login-action@v3
26
28
with :
Original file line number Diff line number Diff line change @@ -15,11 +15,16 @@ jobs:
15
15
steps :
16
16
- name : Checkout repository
17
17
uses : actions/checkout@v4
18
+ with :
19
+ submodules : ' true'
20
+
18
21
- name : Configure branch name
19
22
id : branch_name
20
- run : echo "GH_REF_NAME=${${{ github.ref_name }}//\//-}" >> $GITHUB_OUTPUT
23
+ run : echo "GH_REF_NAME=$(echo ${{ github.ref_name }} | sed 's|/|-|g')" >> $GITHUB_OUTPUT
24
+
21
25
- name : Set up Docker Buildx
22
- uses : docker/setup-buildx-action@v3
26
+ uses : docker/setup-buildx-action@v3
27
+
23
28
- name : Log into registry
24
29
uses : docker/login-action@v3
25
30
with :
Original file line number Diff line number Diff line change 40
40
41
41
- name : Configure branch name
42
42
id : branch_name
43
- run : echo "GH_REF_NAME=${ ${{ github.ref_name }}//\//-} " >> $GITHUB_OUTPUT
43
+ run : echo "GH_REF_NAME=$(echo ${{ github.ref_name }} | sed 's|/|-|g') " >> $GITHUB_OUTPUT
44
44
45
45
- name : GitHub Configuration
46
46
run : git config --global url."https://oauth2:${{ secrets.GH_TOKEN }}@github.com".insteadOf https://github.com
You can’t perform that action at this time.
0 commit comments