We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5961149 commit 27a929aCopy full SHA for 27a929a
action.yml
@@ -69,17 +69,15 @@ runs:
69
exit 1
70
fi
71
echo "::set-output name=image::${IMAGE_NAME,,}"
72
- - id: mkdatetag
73
- shell: bash
74
- run: echo "::set-output name=dtag::$(date +%Y%m%d-%H%M)"
+
75
- id: create_timestamp_tag
76
shell: bash
77
- run: echo "::set-output name=tags::${IMAGE}:${TAGNAME:-$DEFAULTTAG}-${DATE}"
+ run: echo "::set-output name=tags::${IMAGE}:${TAGNAME:-$DEFAULTTAG}-$(date +%Y%m%d-%H%M)"
78
env:
79
IMAGE: ${{ steps.generate-image-name.outputs.image }}
80
TAGNAME: ${{ inputs.tag_name }}
81
DEFAULTTAG : ${{ inputs.osg_series }}-${{ inputs.repo }}
82
- DATE: ${{ steps.mkdatetag.outputs.dtag }}
83
- name: Set up Docker Buildx
84
uses: docker/setup-buildx-action@v1
85
0 commit comments