2024-11-21 19:28:34 +00:00
|
|
|
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:
|
2024-11-21 19:35:55 +00:00
|
|
|
image: camelia-studio/kiss-shot_acerola-orion_heart-under-blade
|
2024-11-21 20:35:45 +00:00
|
|
|
username: camelia
|
|
|
|
password: camelia
|
2024-11-21 20:32:50 +00:00
|
|
|
registry: ${{ secrets.REGISTRY_SERVER }}
|
2024-11-21 19:28:34 +00:00
|
|
|
tag: ${{ gitea.ref_name }}
|
|
|
|
tag_with_latest: true
|