Skip to content

Commit

Permalink
Forgot tag_name
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed May 1, 2024
1 parent bfe4bc9 commit ed4c28e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ jobs:
- name: Create container info
id: create-container-info
run: |
base_image=${{ steps.read-repo-info.outputs.base_image || steps.read-repo-info-pr.outputs.base_image }}
head_image=${{ steps.read-repo-info.outputs.head_image || steps.read-repo-info-pr.outputs.head_image }}
base_image="${{ steps.read-repo-info.outputs.base_image || steps.read-repo-info-pr.outputs.base_image }}"
head_image="${{ steps.read-repo-info.outputs.head_image || steps.read-repo-info-pr.outputs.head_image }}"
tag_name="${{ hashFiles('Dockerfile') }}"
# Default to building a new container under the original repo
image_name=$head_image
Expand Down

0 comments on commit ed4c28e

Please sign in to comment.