File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -12,26 +12,24 @@ jobs:
12
12
tag : ${{ steps.doit.outputs.new }}
13
13
steps :
14
14
- id : doit
15
- $ run : echo "new=$(echo ${{ github.ref_name }} | cut -b 2-)" >> $GITHUB_OUTPUT
15
+ run : echo "new=$(echo ${{ github.ref_name }} | cut -b 2-)" >> $GITHUB_OUTPUT
16
16
17
17
build_img :
18
- needs : get_tag
18
+ needs : tag
19
19
uses : ./.github/workflows/build_image.yml
20
20
with :
21
21
build-tag : ${{ needs.tag.outputs.tag }}
22
22
cache-from : type=registry,ref=ghcr.io/${{ github.repository }}-builder-cache:latest
23
23
24
24
tests :
25
- needs : [tag, test_image ]
25
+ needs : [tag, build_img ]
26
26
uses : ./.github/workflows/run_tests.yml
27
27
with :
28
28
build-tag : ${{ needs.tag.outputs.tag }}
29
29
30
30
testscleanup :
31
31
needs : [tag, tests]
32
32
uses : ./.github/workflows/test_cleanup.yml
33
- with :
34
- build-tag : ${{ needs.tag.outputs.tag }}
35
33
36
34
push :
37
35
needs : [tag, tests]
You can’t perform that action at this time.
0 commit comments