Skip to content

Commit da86293

Browse files
authored
Fix workflows removing old code and proper naming (#82)
1 parent 98af703 commit da86293

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)