Files
testing-02/.gitea/workflows/build.yaml
admin 0a890dc244
Some checks failed
Build & Push / build (push) Failing after 2s
Update .gitea/workflows/build.yaml
2026-01-07 08:30:07 +00:00

17 lines
373 B
YAML

name: "Build & Push"
on:
push:
branches:
- main
jobs:
build:
runs-on: [k8s-cluster]
image: node:24-alpine
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Build & Push Image
run: /kaniko/executor --context . --dockerfile Dockerfile --destination registry.staging/testing-kaniko:${{ gitea.sha }}