We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1afa127 commit 6cca9a7Copy full SHA for 6cca9a7
.github/workflows/docker-image.yml
@@ -44,7 +44,7 @@ jobs:
44
- name: Debug tags
45
id: debug
46
run: |
47
- echo "Tags value is : ${{ steps.docker_meta.output.tags }}"
+ echo "Tags value is : ${{ steps.docker_meta.outputs.tags }}"
48
49
- name: Build and push Docker image
50
id: build-and-push
@@ -53,7 +53,7 @@ jobs:
53
context: .
54
file: ./Dockerfile
55
push: true
56
- tags: ${{ steps.docker_meta.output.tags }}
+ tags: ${{ steps.docker_meta.outputs.tags }}
57
58
- name: Sign the images with GitHub OIDC Token
59
env:
0 commit comments