ansible-actions-container/.forgejo/workflows/build-container.yml
Elia el Lazkani bdd398a27d
Some checks are pending
build-container / docker (push) Waiting to run
chore(): Adds Github token
2024-03-31 00:19:07 +01:00

39 lines
970 B
YAML

name: build-container
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: pi
container:
image: python:3.12.2-slim-bookworm
steps:
- name: Install dependencies
id: dependencies
run: |
apt-get update > /dev/null
apt-get install -y -qq nodejs curl git > /dev/null
curl -sSL https://get.docker.com/ | sh
- 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: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm64
push: true
github_token: ${{ secrets.REPOSITORY_SECRET }}
tags: |
scm.project42.io/elia/ansible-actions-container:latest
scm.project42.io/elia/ansible-actions-container:python-3.12.2