File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -12,26 +12,24 @@ jobs:
1212 tag : ${{ steps.doit.outputs.new }}
1313 steps :
1414 - 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
1616
1717 build_img :
18- needs : get_tag
18+ needs : tag
1919 uses : ./.github/workflows/build_image.yml
2020 with :
2121 build-tag : ${{ needs.tag.outputs.tag }}
2222 cache-from : type=registry,ref=ghcr.io/${{ github.repository }}-builder-cache:latest
2323
2424 tests :
25- needs : [tag, test_image ]
25+ needs : [tag, build_img ]
2626 uses : ./.github/workflows/run_tests.yml
2727 with :
2828 build-tag : ${{ needs.tag.outputs.tag }}
2929
3030 testscleanup :
3131 needs : [tag, tests]
3232 uses : ./.github/workflows/test_cleanup.yml
33- with :
34- build-tag : ${{ needs.tag.outputs.tag }}
3533
3634 push :
3735 needs : [tag, tests]
You can’t perform that action at this time.
0 commit comments