From b29873cfcf58780011c538bc6ecd4097a99c54de Mon Sep 17 00:00:00 2001 From: Pim van Nierop Date: Tue, 23 Apr 2024 12:21:39 +0200 Subject: [PATCH] Release docker image on dockerhub --- .github/workflows/docker-image.yml | 6 ++-- .github/workflows/release.yml | 56 ++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 21a4e0c..30eac5d 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -1,8 +1,8 @@ #See: https://docs.github.com/en/actions/publishing-packages/publishing-docker-images#publishing-images-to-github-packages name: Create and publish a Docker image -on: - release: - types: [ published ] +on: [] +# release: +# types: [ published ] env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f2fddaa --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,56 @@ +# Create release files +name: Release + +on: + release: + types: [published] + +env: + DOCKER_IMAGE: radarbase/data-dashboard-backend + +jobs: + # Build and push tagged release docker image + docker: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - uses: actions/checkout@v3 + + # Add Docker labels and tags + - name: Docker meta + id: docker_meta + uses: docker/metadata-action@v4 + with: + images: ${{ env.DOCKER_IMAGE }} + tags: | + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push + id: docker_build + uses: docker/build-push-action@v3 + with: + # Allow running the image on the architectures supported by openjdk:11-jre-slim + push: true + tags: ${{ steps.docker_meta.outputs.tags }} + context: . + # Use runtime labels from docker_meta as well as fixed labels + labels: | + ${{ steps.docker_meta.outputs.labels }} + maintainer=Pim van Nierop + org.opencontainers.image.authors=Pauline Conde @mpgxvii, Pim van Nierop @pvanierop, Bastiaan de Graaf @bdegraaf1234 + org.opencontainers.image.vendor=RADAR-base + org.opencontainers.image.licenses=Apache-2.0 + + - name: Inspect image + run: | + docker pull ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} + docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }}