Some checks failed
Update Docker Hub Description / update-description-on-hub-docker-io (push) Failing after 11s
Build / build-arch-linux (push) Successful in 9m54s
Build / build-rocky-linux-8 (push) Has been cancelled
Release / push-arch-linux (push) Has been cancelled
Release / push-rocky-linux-8 (push) Has been cancelled
Release / sync-to-hub-docker-io (push) Has been cancelled
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- "opened"
|
|
- "reopened"
|
|
- "synchronize"
|
|
push:
|
|
branches:
|
|
- master
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
build-arch-linux:
|
|
runs-on: ubuntu-latest-amd64
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
- uses: docker/setup-qemu-action@v3.6.0
|
|
- uses: docker/setup-buildx-action@v3.10.0
|
|
|
|
- name: Build image
|
|
run: |
|
|
TAG=latest
|
|
|
|
docker buildx build \
|
|
--file Dockerfile.archlinux \
|
|
--tag git.cryptic.systems/volker.raschek/ansible:${TAG}-archlinux \
|
|
.
|
|
|
|
build-rocky-linux-8:
|
|
runs-on: ubuntu-latest-amd64
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
- uses: docker/setup-qemu-action@v3.6.0
|
|
- uses: docker/setup-buildx-action@v3.10.0
|
|
|
|
- name: Build image
|
|
run: |
|
|
TAG=latest
|
|
|
|
docker buildx build \
|
|
--file Dockerfile.rockylinux8 \
|
|
--tag git.cryptic.systems/volker.raschek/ansible:${TAG}-rockylinux-8 \
|
|
.
|