refactor CI workflow to unify build job name and support multi-platform Docker images; update image URL in docker-compose
This commit is contained in:
parent
ccdf9dddc3
commit
1c9c77eca3
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user