From 9f106a23942b69e0e9aaf7eca0e1478efbd308c7 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Tue, 17 Oct 2023 11:28:48 +0200 Subject: [PATCH] korrektur ouput --- .github/workflows/docker_debian_unified.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker_debian_unified.yml b/.github/workflows/docker_debian_unified.yml index a2d274a6b..5c15f6ebd 100644 --- a/.github/workflows/docker_debian_unified.yml +++ b/.github/workflows/docker_debian_unified.yml @@ -35,16 +35,20 @@ jobs: cache_key: ${{ steps.set-cache_key.outputs.cache_key }} steps: - - id: set-cache_scope + - name: Set Output cache_scope + id: set-cache_scope run: echo "cache_scope="${{ env.CACHE_SCOPE }}-{0}" >> $GITHUB_OUTPUT - - id: set-image_tag_name - run: echo "image_tag_name="${{ env.DOCKER_IMAGE_NAME }}:{0}-test"" >> $GITHUB_OUTPUT + - name: Set Output image_tag_name + id: set-image_tag_name + run: echo "image_tag_name=${{ env.DOCKER_IMAGE_NAME }}:{0}-test" >> $GITHUB_OUTPUT - - id: set-image_file_path + - name: Set Output image_file_path + id: set-image_file_path run: echo "image_file_path=./${{ env.DOCKER_IMAGE_NAME }}-{0}.tar" >> $GITHUB_OUTPUT - - id: set-cache_key + - name: Set Output cache_key + id: set-cache_key run: echo "cache_key=${{ steps.set-cache_scope.outputs.cache_scope }}-${{ github.sha }}#${{ github.run_attempt }}" >> $GITHUB_OUTPUT