ansbile qemu cross create ?
Some checks failed
Build and Push Ansible Container / build-and-push (push) Failing after 33s
Some checks failed
Build and Push Ansible Container / build-and-push (push) Failing after 33s
This commit is contained in:
parent
f468bfefc0
commit
78c740e50c
2 changed files with 79 additions and 48 deletions
67
.forgejo/workflows/ansible.yml-old
Normal file
67
.forgejo/workflows/ansible.yml-old
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
# Workflow name
|
||||
name: Build and Push Ansible Container
|
||||
|
||||
# Run-name for each workflow run
|
||||
run-name: Build and Push Ansible Container
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'containers/ansible/**'
|
||||
- '.forgejo/workflows/ansible.yml'
|
||||
workflow_dispatch: {}
|
||||
schedule:
|
||||
- cron: '0 20 * * 5' # Runs every Friday at 8 PM UTC
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [ amd64, arm64 ]
|
||||
runs-on: ${{ matrix.arch }}
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-22.04
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Login to Forgejo Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ vars.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.PACKAGE_TOKEN }}
|
||||
|
||||
- name: Build and push (${{ matrix.arch }})
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: ./containers/ansible/
|
||||
file: ./containers/ansible/Dockerfile
|
||||
platforms: linux/${{ matrix.arch }}
|
||||
push: true
|
||||
tags: |
|
||||
${{ vars.REGISTRY }}/${{ github.actor }}/ansible:${{ matrix.arch }}-latest
|
||||
|
||||
manifest:
|
||||
needs: build-and-push
|
||||
runs-on: amd64
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-22.04
|
||||
steps:
|
||||
- name: Login to Forgejo Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ vars.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.PACKAGE_TOKEN }}
|
||||
|
||||
- name: Create and push multi-arch manifest
|
||||
run: |
|
||||
docker manifest create ${{ vars.REGISTRY }}/${{ github.actor }}/ansible:latest \
|
||||
--amend ${{ vars.REGISTRY }}/${{ github.actor }}/ansible:amd64-latest \
|
||||
--amend ${{ vars.REGISTRY }}/${{ github.actor }}/ansible:arm64-latest
|
||||
docker manifest push ${{ vars.REGISTRY }}/${{ github.actor }}/ansible:latest
|
||||
Loading…
Add table
Add a link
Reference in a new issue