We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfad618 commit 06551eaCopy full SHA for 06551ea
.github/workflows/push-rdev.yml
@@ -56,10 +56,12 @@ jobs:
56
context: ${{ matrix.image.context }}
57
name: ${{ matrix.image.name }}
58
registry: 654654542669.dkr.ecr.us-west-2.amazonaws.com
59
- - name: print the tag
60
- shell: python
+ - name: echo the tags to github output
61
run: |
62
- print( str(${{ steps.build_outputs.outputs.tags[1] }} ) )
+ echo "{IMAGE_SHA}=${{ steps.build_outputs.outputs.tags }} " >> "$GITHUB_ENV"
+ - name: print the tag
63
+ shell: bash
64
+ run: echo "The image sha is $IMAGE_SHA"
65
# TODO: figure out whether {{ secrets.GITHUB_TOKEN }} is enough for this step:
66
# - name: Update the file
67
# uses: EndBug/add-and-commit@v9
0 commit comments