Skip to content

Commit

Permalink
Merge pull request #338 from avnishsinghh/publish_docker_image
Browse files Browse the repository at this point in the history
Publish docker image
  • Loading branch information
kjsanger committed Jun 3, 2024
2 parents d6e1dd4 + 661a0a4 commit 9d9fc5d
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: "Publish Docker Image"

on:
push:
tags:
- "**"

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l -e -o pipefail {0}

env:
IMAGE_NAME: p4
REPOSITORY_OWNER: ${{ github.repository_owner }}

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Fetch Tags"
# Workaround for https://github.com/actions/checkout/issues/290
run: git fetch --tags --force

- name: "Get release variables"
# RELEASE_VERSION assignment must match the command used in autoconf's
# configure.ac file. On update, care should be taken to maintain both
# sides congruent.
run: |
echo 'RELEASE_VERSION='$(git describe --always --tags --dirty) >> $GITHUB_ENV
echo 'GIT_URL='$(git remote get-url origin) >> $GITHUB_ENV
echo 'GIT_COMMIT='$(git log --pretty=format:'%H' -n 1) >> $GITHUB_ENV
- name: "Login to Docker registry"
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: "Build Docker image"
run: |
docker build --rm \
--file Dockerfile \
--platform linux/amd64 \
--progress plain \
--load \
--label "org.opencontainers.image.title=${IMAGE_NAME}" \
--label "org.opencontainers.image.source=${GIT_URL}" \
--label "org.opencontainers.image.revision=${GIT_COMMIT}" \
--label "org.opencontainers.image.version=${RELEASE_VERSION}" \
--label "org.opencontainers.image.created=$(date --utc --iso-8601=seconds)" \
--tag "ghcr.io/${REPOSITORY_OWNER}/${IMAGE_NAME}:${RELEASE_VERSION}" \
--tag "ghcr.io/${REPOSITORY_OWNER}/${IMAGE_NAME}:latest" \
.
- name: "Push Docker image to registry"
run: |
docker push "ghcr.io/$REPOSITORY_OWNER/$IMAGE_NAME:$RELEASE_VERSION"
docker push "ghcr.io/$REPOSITORY_OWNER/$IMAGE_NAME:latest"

0 comments on commit 9d9fc5d

Please sign in to comment.