Skip to content

Commit

Permalink
Add Github Workflow for Alpine Docker Image Build and Push
Browse files Browse the repository at this point in the history
  • Loading branch information
theAkito committed Oct 12, 2023
1 parent ad9b206 commit 98fdc8c
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 3 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/docker-build-push-app-alpine.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Docker Image Build and Push - Alpine

on:
push:
branches:
- master
tags:
- "*.*.*"
pull_request:

jobs:

build-push:

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Git Metadata for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
akito13/nim
flavor: |
latest=true
prefix=
suffix=
tags: |
type=raw,value=alpine
type=raw,value=musl
type=schedule,pattern={{date 'YYYYMMDD'}}-alpine
type=ref,suffix=-alpine,event=branch
type=ref,suffix=-alpine,event=pr
type=semver,pattern={{version}}-alpine
type=semver,pattern={{major}}.{{minor}}-alpine
type=semver,pattern={{major}}-alpine
type=sha,prefix=,suffix=-alpine,format=long
type=sha,prefix=,suffix=-alpine,format=short
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v2
with:
driver-opts: |
image=moby/buildkit:v0.12.0
buildkitd-flags: --debug

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/ppc64le,linux/arm/v7,linux/arm64/v8,linux/386,linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
11 changes: 8 additions & 3 deletions .github/workflows/docker-build-push-app-jammy.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Docker Image Build and Push
name: Docker Image Build and Push - Ubuntu

on:
push:
branches:
- master
- docker/build-push-action#910
tags:
- "*.*.*"
pull_request:
Expand All @@ -30,14 +29,20 @@ jobs:
suffix=
tags: |
type=edge,branch=master
type=raw,value=libc
type=raw,value=ubuntu
type=raw,value=jammy
type=raw,value=jammy-20230916
type=schedule
type=schedule,pattern={{date 'YYYYMMDD'}}
type=schedule,pattern={{date 'YYYYMMDD'}}-ubuntu
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern={{version}}-ubuntu
type=semver,pattern={{major}}.{{minor}}-ubuntu
type=semver,pattern={{major}}-ubuntu
type=sha,prefix=,format=long
type=sha,prefix=,format=short
Expand Down

0 comments on commit 98fdc8c

Please sign in to comment.