Skip to content

Commit

Permalink
Merge pull request #372 from edmcouncil/automatic_docker_image_public…
Browse files Browse the repository at this point in the history
…ation-1

Automatic publication of docker image
  • Loading branch information
mereolog authored Oct 12, 2023
2 parents 1c9d08c + 9e75f6a commit a62a507
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker-image_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: publish_docker_image

on:
push:
branches:
- "develop"

jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: edmcouncil/onto-viewer
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit a62a507

Please sign in to comment.