Skip to content

Commit

Permalink
Merge pull request #153 from edmcouncil/152-automation-of-docker-imag…
Browse files Browse the repository at this point in the history
…e-publication

Automation of docker image publication
  • Loading branch information
przemekgradzki authored Feb 5, 2024
2 parents a91fa4a + c61df02 commit b816b25
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: publish_docker_image

on:
push:
branches:
- "stable"
- "build-dev"

jobs:
build:
runs-on: ubuntu-latest
env:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
steps:
-
name: Get branch names.
id: branch-names
uses: tj-actions/branch-names@v8
-
name: Checkout
uses: actions/checkout@v4
-
name: Login to Docker Hub
if: ${{ env.dockerhub_username != '' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Get current date
run: echo "NOW=$(date -u +'%Y-%m-%d')" >> $GITHUB_ENV
-
name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }}
labels: |
org.${{ github.repository_owner }}.ontology-publisher.release-date=${{ env.NOW }}
org.${{ github.repository_owner }}.ontology-publisher.version=${{ steps.branch-names.outputs.current_branch }}
-
name: Build and push ${{ github.repository }}:${{ steps.meta.outputs.version }}
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: ${{ env.dockerhub_username != '' }}
tags: ${{ github.repository }}:${{ steps.meta.outputs.version }}
annotations: ${{ steps.meta.outputs.annotations }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit b816b25

Please sign in to comment.