Melaine Gérard
426e3aea1e
Some checks failed
Build and Push Docker Image / build (push) Failing after 17s
21 lines
481 B
YAML
21 lines
481 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
|
|
registry: ${{ secrets.REGISTRY_SERVER }}
|
|
tag: ${{ gitea.ref_name }}
|
|
tag_with_latest: true |