45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: build-container
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: pi
|
|
container:
|
|
image: cruizba/ubuntu-dind:noble-26.0.0
|
|
options: --sysctl net.ipv6.conf.all.disable_ipv6=0 --privileged
|
|
steps:
|
|
- name: Install dependencies
|
|
id: dependencies
|
|
run: |
|
|
apt-get update > /dev/null
|
|
apt-get install -y -qq nodejs git > /dev/null
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to Forgejo Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: scm.project42.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.REPOSITORY_SECRET }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
platforms: linux/arm64
|
|
push: true
|
|
tags: |
|
|
scm.project42.io/elia/ansible-actions-container:latest
|
|
scm.project42.io/elia/ansible-actions-container:python-3.12.2
|