matrix-bot-praying-times/.forgejo/workflows/ci.yaml
Finn Christiansen fc0728c756
Some checks failed
ci / docker (push) Failing after 2m26s
Python formatting PEP8 / Python-PEP8 (push) Successful in 13s
💚 Fix ARM build
2024-06-12 22:52:52 +02:00

38 lines
1.1 KiB
YAML

name: ci
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
services:
registry:
image: registry:2
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Docker for QEMU
uses: https://github.com/papodaca/install-docker-action@main
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: code.f2n.me
username: ${{ secrets.MY_FORGEJO_USERNAME }}
password: ${{ secrets.MY_FORGEJO_TOKEN }}
- name: Build and push to local registry
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: code.f2n.me/finn/matrix-bot-praying-times:latest
- name: Inspect
run: |
docker buildx imagetools inspect code.f2n.me/finn/matrix-bot-praying-times:latest