Files
icinga-webhook-gateway/.github/workflows/main.yaml
Yannik Schmidt 52569c7687
Some checks failed
ci / docker (push) Failing after 9s
fix: remove obsolete qemu action
2025-11-25 12:07:43 +01:00

37 lines
834 B
YAML

name: ci
on:
push:
branches:
- "master"
schedule:
- cron: "0 2 * * 0"
jobs:
docker:
runs-on: ubuntu-latest
environment:
name: prod
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASS }}
-
name: Build and push async-icinga image
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
push: true
tags: "${{ secrets.REGISTRY }}/atlantishq/async-icinga:latest"