Skip to content

Commit

Permalink
dropped arm/v7 build from GH actions due to qemu bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jabelone committed Aug 4, 2023
1 parent f81bdd1 commit f850fc0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docker.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Docker Image
name: Build Docker Image (DEV Branch)

on:
push:
Expand All @@ -23,6 +23,6 @@ jobs:
uses: docker/build-push-action@v3
with:
file: docker/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64
push: true
tags: membermatters/membermatters:dev
7 changes: 4 additions & 3 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Build Docker Image
name: Build Docker Image (Prod Release)

on:
push:
tags:
- "v*.*.*"
- "v[0-9]+.[0-9]+.[0-9]+"
- "!v[0-9]+.[0-9]+.[0-9]+-*"

jobs:
docker:
Expand All @@ -23,6 +24,6 @@ jobs:
uses: docker/build-push-action@v3
with:
file: docker/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64
push: true
tags: membermatters/membermatters:latest,membermatters/membermatters:${{github.ref_name}}

0 comments on commit f850fc0

Please sign in to comment.