Skip to content

Commit df0bcdd

Browse files
authored
Refine workflow for generating test-ubuntu-git (#1617)
1 parent 473055b commit df0bcdd

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

.github/workflows/update-test-ubuntu-git.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publishes the test-ubuntu-git Container Image
1+
name: Publish test-ubuntu-git Container
22

33
on:
44
# Use an on demand workflow trigger.
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
inputs:
99
publish:
10-
description: 'Publish to ghcr.io?'
10+
description: 'Publish to ghcr.io? (main branch only)'
1111
type: boolean
1212
required: true
1313
default: false
@@ -37,20 +37,19 @@ jobs:
3737
username: ${{ github.actor }}
3838
password: ${{ secrets.GITHUB_TOKEN }}
3939

40-
# Use `docker/metadata-action` to preserve tags and labels that exist on the GHCR.io container image.
41-
# - name: Extract metadata (tags, labels) for Docker
42-
# id: meta
43-
# uses: docker/[email protected]
44-
# with:
45-
# images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
40+
- name: Format Timestamp
41+
id: timestamp
42+
# Use `date` with a custom format to achieve the key=value format GITHUB_OUTPUT expects.
43+
run: date -u "+now=%Y%m%d.%H%M%S.%3NZ" >> "$GITHUB_OUTPUT"
4644

4745
# Use `docker/build-push-action` to build (and optionally publish) the image.
4846
- name: Build and push Docker image
4947
uses: docker/[email protected]
5048
with:
5149
context: .
5250
file: images/test-ubuntu-git.Dockerfile
53-
push: ${{ inputs.publish }}
54-
tags: ${{ env.IMAGE_NAME }}:sha-${{ env.GITHUB_SHA }}
55-
# tags: ${{ steps.meta.outputs.tags }}
56-
# labels: ${{ steps.meta.outputs.labels }}
51+
# For now, attempts to push to ghcr.io must target the `main` branch.
52+
# In the future, consider also allowing attempts from `releases/*` branches.
53+
push: ${{ inputs.publish && github.ref_name == 'main' }}
54+
tags: |
55+
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}.${{ steps.timestamp.outputs.now }}

0 commit comments

Comments
 (0)