refactor CI workflow to unify build job name and support multi-platform Docker images; update image URL in docker-compose
Some checks failed
Master Build / Build and Push Docker Image (amd64) (push) Failing after 51s
Master Build / Update running container (push) Has been skipped

This commit is contained in:
José Henrique 2025-01-24 22:23:50 -03:00
parent ccdf9dddc3
commit 1c9c77eca3
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ on:
branches: [ "main" ]
jobs:
build_amd64:
build:
name: Build and Push Docker Image (amd64)
runs-on: ubuntu-latest
@ -39,7 +39,7 @@ jobs:
file: ./Dockerfile
push: true
tags: git.ivanch.me/ivanch/new-home/home-page:latest
platforms: linux/amd64
platforms: linux/amd64, linux/arm64
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
@ -47,7 +47,7 @@ jobs:
deploy local (demo):
name: Update running container
runs-on: self-hosted-ubuntu-latest
needs: build_amd64
needs: build
steps:
- name: Recreate container
@ -67,7 +67,7 @@ jobs:
deploy live:
name: Update running container
runs-on: self-hosted-ubuntu-latest
needs: build_amd64
needs: build
steps:
- name: Recreate container

View File

@ -2,7 +2,7 @@ version: '3.8'
services:
home-page:
image: https://git.ivanch.me/ivanch/new-home/home-page:latest
image: git.ivanch.me/ivanch/new-home/home-page:latest
ports:
- 6800:80
restart: unless-stopped