Files
birdspotter/.gitea/workflows/gitea-bp.yaml
makew 6e8b808d75
Some checks failed
Build and Push Image / build (push) Failing after 40s
run
2026-03-22 10:59:33 +02:00

20 lines
581 B
YAML

name: Build and Push Image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Login to GitHub Container Registry
run: docker login -u make -p ${{ secrets.TOKEN }} gitea.paddington.fi
- uses: actions/checkout@master
- name: Build and push Docker image
uses: https://code.thetadev.de/actions/kaniko@v1
with:
registry: http://gitea-http.gitea:3000
image: make/myapp
username: make
password: ${{ secrets.TOKEN }}
cache: true