Files
birdspotter/.gitea/workflows/gitea-bp.yaml
makew 122548c890
Some checks failed
Build and Push Image / build (push) Failing after 21s
test
2026-03-22 10:55:30 +02:00

24 lines
675 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
uses: docker/login-action@v3
with:
registry: gitea.paddington.fi
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}
- 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