Melaine Gérard
d89ddafccc
Some checks failed
Build and Push Docker Image / build (push) Failing after 10s
23 lines
574 B
YAML
23 lines
574 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/Kiss-Shot_Acerola-Orion_Heart-Under-Blade
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
registry: git.crystalyx.net
|
|
tag: ${{ gitea.ref_name }}
|
|
tag_with_latest: true |