Gachamelia/.gitea/workflows/build-docker.yml
Melaine Gérard 8f610fe94a
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m57s
Patch Docker build
2024-11-28 09:53:23 +01:00

23 lines
506 B
YAML

name: Build and Push Docker Image
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build and Push with Kaniko
uses: aevea/action-kaniko@master
with:
image: camelia-studio/gachamelia
username: camelia
password: camelia
registry: ${{ secrets.REGISTRY_SERVER }}
tag: ${{ gitea.ref_name }}
tag_with_latest: true