Melaine Gérard
ca1e28a53b
Some checks failed
Build and Push Docker Image / build (push) Failing after 49s
28 lines
753 B
YAML
28 lines
753 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: git.crystalyx.net/${{ gitea.repository }}
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
registry: git.crystalyx.net
|
|
tag: ${{ github.ref_name }},latest
|
|
cache: true
|
|
cache_registry: git.crystalyx.net/${{ gitea.repository }}/cache
|
|
extra_args: |
|
|
--snapshot-mode=redo
|
|
--use-new-run
|
|
--compressed-caching=false |