FIx
This commit is contained in:
@@ -9,48 +9,93 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: "0 1 * * *"
|
- cron: "0 1 * * *"
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: docker-build-prod
|
group: docker-build-prod
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
|
||||||
|
# ─── APACHE ───────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
build-apache-amd64:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
outputs:
|
||||||
|
digest: ${{ steps.build.outputs.digest }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: docker/setup-buildx-action@v1
|
||||||
|
- uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.steelants.cz
|
||||||
|
username: ${{ secrets.GITEAUSER }}
|
||||||
|
password: ${{ secrets.GITEAPASSWD }}
|
||||||
|
- id: build
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: apache
|
||||||
|
platforms: linux/amd64
|
||||||
|
outputs: type=image,name=git.steelants.cz/steelants/docker_php_base,push-by-digest=true,name-canonical=true,push=true
|
||||||
|
|
||||||
|
build-apache-arm64:
|
||||||
|
runs-on: ubuntu-latest-arm
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
outputs:
|
||||||
|
digest: ${{ steps.build.outputs.digest }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: docker/setup-buildx-action@v1
|
||||||
|
- uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.steelants.cz
|
||||||
|
username: ${{ secrets.GITEAUSER }}
|
||||||
|
password: ${{ secrets.GITEAPASSWD }}
|
||||||
|
- id: build
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: apache
|
||||||
|
platforms: linux/arm64
|
||||||
|
outputs: type=image,name=git.steelants.cz/steelants/docker_php_base,push-by-digest=true,name-canonical=true,push=true
|
||||||
|
|
||||||
|
manifest-apache:
|
||||||
|
needs: [build-apache-amd64, build-apache-arm64]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
container:
|
container:
|
||||||
image: catthehacker/ubuntu:act-latest
|
image: catthehacker/ubuntu:act-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- uses: docker/setup-buildx-action@v1
|
- uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
- uses: docker/login-action@v3
|
- uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.steelants.cz
|
registry: git.steelants.cz
|
||||||
username: ${{ secrets.GITEAUSER }}
|
username: ${{ secrets.GITEAUSER }}
|
||||||
password: ${{ secrets.GITEAPASSWD }}
|
password: ${{ secrets.GITEAPASSWD }}
|
||||||
|
- name: Create and push multi-arch manifest
|
||||||
|
run: |
|
||||||
|
docker buildx imagetools create -t git.steelants.cz/steelants/docker_php_base:latest \
|
||||||
|
git.steelants.cz/steelants/docker_php_base@${{ needs.build-apache-amd64.outputs.digest }} \
|
||||||
|
git.steelants.cz/steelants/docker_php_base@${{ needs.build-apache-arm64.outputs.digest }}
|
||||||
|
|
||||||
- uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: apache
|
|
||||||
push: true
|
|
||||||
tags: git.steelants.cz/steelants/docker_php_base:latest
|
|
||||||
|
|
||||||
# ✅ Notifikace při úspěšném deploymentu
|
|
||||||
- name: Discord Webhook Success
|
- name: Discord Webhook Success
|
||||||
if: success()
|
if: success()
|
||||||
uses: tsickert/discord-webhook@v6.0.0
|
uses: tsickert/discord-webhook@v6.0.0
|
||||||
with:
|
with:
|
||||||
webhook-url: ${{ secrets.WEBHOOK_URL }}
|
webhook-url: ${{ secrets.WEBHOOK_URL }}
|
||||||
content: |
|
content: |
|
||||||
✅ APACHE - Build successful!
|
✅ APACHE - Build successful! (amd64 + arm64)
|
||||||
Repo: ${{ github.repository }}
|
Repo: ${{ github.repository }}
|
||||||
Branch: ${{ github.ref_name }}
|
Branch: ${{ github.ref_name }}
|
||||||
Commit: ${{ github.sha }}
|
Commit: ${{ github.sha }}
|
||||||
Version: ${{ env.release_version }}
|
|
||||||
|
|
||||||
# ❌ Notifikace při neúspěšném deploymentu
|
|
||||||
- name: Discord Webhook Failure
|
- name: Discord Webhook Failure
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: tsickert/discord-webhook@v6.0.0
|
uses: tsickert/discord-webhook@v6.0.0
|
||||||
@@ -61,36 +106,3 @@ jobs:
|
|||||||
Repo: ${{ github.repository }}
|
Repo: ${{ github.repository }}
|
||||||
Branch: ${{ github.ref_name }}
|
Branch: ${{ github.ref_name }}
|
||||||
Commit: ${{ github.sha }}
|
Commit: ${{ github.sha }}
|
||||||
Version: ${{ env.release_version }}
|
|
||||||
|
|
||||||
- uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: fmp-alpine
|
|
||||||
push: true
|
|
||||||
tags: git.steelants.cz/steelants/docker_php_base:fpm-alpine-latest
|
|
||||||
|
|
||||||
# ✅ Notifikace při úspěšném deploymentu
|
|
||||||
- name: Discord Webhook Success
|
|
||||||
if: success()
|
|
||||||
uses: tsickert/discord-webhook@v6.0.0
|
|
||||||
with:
|
|
||||||
webhook-url: ${{ secrets.WEBHOOK_URL }}
|
|
||||||
content: |
|
|
||||||
✅ FMP - ALPINE - Build successful!
|
|
||||||
Repo: ${{ github.repository }}
|
|
||||||
Branch: ${{ github.ref_name }}
|
|
||||||
Commit: ${{ github.sha }}
|
|
||||||
Version: ${{ env.release_version }}
|
|
||||||
|
|
||||||
# ❌ Notifikace při neúspěšném deploymentu
|
|
||||||
- name: Discord Webhook Failure
|
|
||||||
if: failure()
|
|
||||||
uses: tsickert/discord-webhook@v6.0.0
|
|
||||||
with:
|
|
||||||
webhook-url: ${{ secrets.WEBHOOK_URL }}
|
|
||||||
content: |
|
|
||||||
❌ FMP - ALPINE - Build failed!
|
|
||||||
Repo: ${{ github.repository }}
|
|
||||||
Branch: ${{ github.ref_name }}
|
|
||||||
Commit: ${{ github.sha }}
|
|
||||||
Version: ${{ env.release_version }}
|
|
||||||
Reference in New Issue
Block a user