Skip to content

Commit

Permalink
fix: Add missing properties of the docker composite action
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitris Kargatzis <dkargatzis@gmail.com>
  • Loading branch information
dkargatzis committed Mar 8, 2024
1 parent d3eff76 commit 9b2b179
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,17 @@ runs:
# Set the environment variables
echo "image_tag=${image_tag}" >> $GITHUB_ENV
echo "::set-output name=image-tag::${image_tag}"
shell: bash

# Build the Docker image
- name: Build Docker image
run: docker build --tag ${{ env.image_tag }} .
run: |-
docker build --tag ${{ env.image_tag }} .
shell: bash

# Push the Docker image to the registry
- name: Push Docker image to registry
id: push
run: |-
docker push ${{ env.image_tag }}
shell: bash

0 comments on commit 9b2b179

Please sign in to comment.