Skip to content

Commit

Permalink
Add docker actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlgo11 committed May 19, 2024
1 parent 209922b commit d1d565a
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/dev-docker.yml
Original file line number Diff line number Diff line change
@@ -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
53 changes: 53 additions & 0 deletions .github/workflows/prod-docker.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit d1d565a

Please sign in to comment.