2024-02-21 12:46:47 +01:00
name : Publish test-ubuntu-git Container
2024-02-20 17:08:08 +01:00
on :
# Use an on demand workflow trigger.
# (Forked copies of actions/checkout won't have permission to update GHCR.io/actions,
# so avoid trigger events that run automatically.)
workflow_dispatch :
inputs :
publish :
2024-02-21 12:46:47 +01:00
description : 'Publish to ghcr.io? (main branch only)'
2024-02-20 17:08:08 +01:00
type : boolean
required : true
default : false
env :
REGISTRY : ghcr.io
IMAGE_NAME : actions/test-ubuntu-git
jobs :
build-and-push-image :
runs-on : ubuntu-latest
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
permissions :
contents : read
packages : write
steps :
- name : Checkout repository
uses : actions/checkout@v4
# Use `docker/login-action` to log in to GHCR.io.
# Once published, the packages are scoped to the account defined here.
- name : Log in to the ghcr.io container registry
2024-04-23 19:14:23 +02:00
uses : docker/login-action@v3.1.0
2024-02-20 17:08:08 +01:00
with :
registry : ${{ env.REGISTRY }}
username : ${{ github.actor }}
password : ${{ secrets.GITHUB_TOKEN }}
2024-02-21 12:46:47 +01:00
- name : Format Timestamp
id : timestamp
# Use `date` with a custom format to achieve the key=value format GITHUB_OUTPUT expects.
run : date -u "+now=%Y%m%d.%H%M%S.%3NZ" >> "$GITHUB_OUTPUT"
2024-02-20 17:08:08 +01:00
2024-02-22 14:38:58 +01:00
- name : Issue Image Publish Warning
if : ${{ inputs.publish && github.ref_name != 'main' }}
run : echo "::warning::test-ubuntu-git images can only be published from the actions/checkout 'main' branch. Workflow will continue with push/publish disabled."
2024-02-20 17:08:08 +01:00
# Use `docker/build-push-action` to build (and optionally publish) the image.
2024-02-22 14:38:58 +01:00
- name : Build Docker Image (with optional Push)
2024-04-23 19:14:23 +02:00
uses : docker/build-push-action@v5.3.0
2024-02-20 17:08:08 +01:00
with :
context : .
file : images/test-ubuntu-git.Dockerfile
2024-02-21 12:46:47 +01:00
# For now, attempts to push to ghcr.io must target the `main` branch.
# In the future, consider also allowing attempts from `releases/*` branches.
push : ${{ inputs.publish && github.ref_name == 'main' }}
tags : |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}.${{ steps.timestamp.outputs.now }}