Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,24 @@ jobs:
tag: ${{ steps.doit.outputs.new }}
steps:
- id: doit
$run: echo "new=$(echo ${{ github.ref_name }} | cut -b 2-)" >> $GITHUB_OUTPUT
run: echo "new=$(echo ${{ github.ref_name }} | cut -b 2-)" >> $GITHUB_OUTPUT

build_img:
needs: get_tag
needs: tag
uses: ./.github/workflows/build_image.yml
with:
build-tag: ${{ needs.tag.outputs.tag }}
cache-from: type=registry,ref=ghcr.io/${{ github.repository }}-builder-cache:latest

tests:
needs: [tag, test_image]
needs: [tag, build_img]
uses: ./.github/workflows/run_tests.yml
with:
build-tag: ${{ needs.tag.outputs.tag }}

testscleanup:
needs: [tag, tests]
uses: ./.github/workflows/test_cleanup.yml
with:
build-tag: ${{ needs.tag.outputs.tag }}

push:
needs: [tag, tests]
Expand Down