From d1d565a02abcfd7b729e577722683714b5c6df62 Mon Sep 17 00:00:00 2001 From: Carlgo11 Date: Mon, 20 May 2024 01:30:56 +0200 Subject: [PATCH] Add docker actions --- .github/workflows/dev-docker.yml | 35 ++++++++++++++++++++ .github/workflows/prod-docker.yml | 53 +++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 .github/workflows/dev-docker.yml create mode 100644 .github/workflows/prod-docker.yml diff --git a/.github/workflows/dev-docker.yml b/.github/workflows/dev-docker.yml new file mode 100644 index 0000000..1e6fbda --- /dev/null +++ b/.github/workflows/dev-docker.yml @@ -0,0 +1,35 @@ +name: Publish Development Images + +on: [ push ] + +jobs: + docker: + name: Publish to GitHub Container Registry + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + - name: Setup Docker QEMU + uses: docker/setup-qemu-action@v1 + - name: Setup Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ GITHUB.ACTOR }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + - name: Build and Push image + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x + push: true + tags: | + carlgo11/guest-portal:dev + ghcr.io/carlgo11/guest-portal:dev diff --git a/.github/workflows/prod-docker.yml b/.github/workflows/prod-docker.yml new file mode 100644 index 0000000..c388ee7 --- /dev/null +++ b/.github/workflows/prod-docker.yml @@ -0,0 +1,53 @@ +name: Publish Released Images + +on: + release: + types: [ published ] + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Docker metadata + id: backend-meta + uses: docker/metadata-action@v3 + with: + images: | + ${{ GITHUB.REPOSITORY }} + ghcr.io/${{ GITHUB.REPOSITORY }} + tags: | + type=raw,value=backend + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=semver,pattern={{major}} + flavor: | + latest=false + + - uses: docker/setup-qemu-action@v1 + + - uses: docker/setup-buildx-action@v1 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Build and Push image + uses: docker/build-push-action@v2 + with: + context: . + file: Docker/Backend.docker + platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x + push: true + tags: ${{ steps.backend-meta.outputs.tags }} + labels: ${{ steps.backend-meta.outputs.labels }}