Skip to content

Commit

Permalink
korrektur ouput
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Oct 17, 2023
1 parent 27e9dd7 commit 9f106a2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/docker_debian_unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 9f106a2

Please sign in to comment.