Some checks failed
checks / k8s (push) Failing after 2m26s
checks / pre-commit (push) Failing after 2m32s
Kaniko deployments / nextcloud (push) Failing after 1m30s
checks / tflint (push) Failing after 1m39s
OpenTofu deployments / authentik (push) Failing after 1m24s
OpenTofu deployments / adguard (push) Failing after 1m39s
24 lines
562 B
YAML
24 lines
562 B
YAML
---
|
|
name: Kaniko deployments
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- 'ci/debug'
|
|
|
|
jobs:
|
|
nextcloud:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
- name: Kaniko build
|
|
uses: aevea/action-kaniko@v0.14.0
|
|
with:
|
|
image: catalin/fukuops
|
|
username: kaniko
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
cache: true
|
|
registry: git.roboces.dev
|
|
tag: nextcloud-30.0.1
|
|
path: docker/nextcloud
|