Skip to content

Commit

Permalink
Split build of devel and release images
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMStraub committed Dec 7, 2024
1 parent 7dc74de commit 46b56a1
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 21 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/image-devel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build Docker development images

on:
workflow_dispatch:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install and Build
run: |
npm install
npm run build
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
install: true
- name: Builder instance name
run: echo ${{ steps.buildx.outputs.name }}
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: tag and push devel image
run: |
docker build --push \
--tag ghcr.io/gramps-project/grampsweb:latest-devel \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
-f Dockerfile.devel .
- name: Clean up dangling images
run: docker image prune -f -a
- name: tag and push devel nginx image
run: |
docker build --push \
--tag ghcr.io/gramps-project/grampsjs:latest-devel \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
-f Dockerfile.nginx .
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: Build Docker image
name: Build Docker reöease images

on:
workflow_dispatch:
push:
branches:
- main
release:
types:
- created
Expand Down Expand Up @@ -39,31 +36,14 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: tag and push devel image
run: |
docker build --push \
--tag ghcr.io/gramps-project/grampsweb:latest-devel \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
-f Dockerfile.devel .
- name: Clean up dangling images
run: docker image prune -f -a
- name: tag and push release image
if: github.event_name == 'release'
run: |
docker build --push \
--tag ghcr.io/gramps-project/grampsweb:${{ github.event.release.tag_name }} \
--tag ghcr.io/gramps-project/grampsweb:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .
- name: Clean up dangling images
run: docker image prune -f -a
- name: tag and push devel nginx image
run: |
docker build --push \
--tag ghcr.io/gramps-project/grampsjs:latest-devel \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
-f Dockerfile.nginx .
- name: Clean up dangling images
run: docker image prune -f -a
- name: tag and push release nginx image
if: github.event_name == 'release'
run: |
Expand Down

0 comments on commit 46b56a1

Please sign in to comment.