Files
birdspotter/.gitea/workflows/gitea-bp.yaml
makew a5b0c08258
Some checks failed
Build and Push Docker Image / build (push) Failing after 25s
uusi workflow
2026-03-22 07:36:19 +02:00

30 lines
714 B
YAML

name: Build and Push Docker Image
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: gitea.paddington.fi
username: make
password: ${{ secrets.TOKEN }}
- name: Set up Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: make/birdspotter:latest
platforms: linux/amd64,linux/arm64