Gachamelia/.gitea/workflows/build-docker.yml
Melaine Gérard 0a79243494
All checks were successful
Build and Push Docker Image / build (push) Successful in 56s
Clean all
2024-11-01 15:26:37 +01:00

25 lines
641 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: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
registry: git.crystalyx.net
tag: ${{ gitea.ref_name }}
tag_with_latest: true
cache: true
cache_registry: git.crystalyx.net/camelia-studio/gachamelia/cache