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 94afe1d commit 2ff7f29Copy full SHA for 2ff7f29
.github/workflows/release-series-builds.yml
@@ -152,7 +152,7 @@ jobs:
152
steps:
153
- name: make date tag
154
id: mkdatetag
155
- run: echo "::set-output name=dtag::$(date +%Y%m%d-%H%M)"
+ run: echo "dtag=$(date +%Y%m%d-%H%M)" >> $GITHUB_OUTPUT
156
157
push-images:
158
name: Push ${{ matrix.image }}:${{ matrix.osg_series }}-${{ matrix.repo }} image
@@ -191,7 +191,7 @@ jobs:
191
# This causes the tag_list array to be comma-separated below,
192
# which is required for build-push-action
193
IFS=,
194
- echo "::set-output name=taglist::${tag_list[*]}"
+ echo "taglist=${tag_list[*]}" >> $GITHUB_OUTPUT
195
196
- name: Set up Docker Buildx
197
uses: docker/setup-buildx-action@v1
0 commit comments