Update .gitea/workflows/build.yml
Some checks failed
Build and Test / build (push) Failing after 11s

This commit is contained in:
2025-10-09 09:04:59 +00:00
parent c469178d1e
commit 49e7b8c97a

View File

@@ -19,11 +19,18 @@ jobs:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Generate Dockerfile"
run: curl -o Dockerfile https://n8n.mceasy.cloud/webhook/generator/manifest?type=docker
- id: generator
name: "Generate Dockerfile & Manifest K8S"
uses: ardipc/devops-generator@v1.0.2
with:
name: "hello-app"
language: "node"
- name: "Generate K8s"
run: curl -o k8s.yml https://n8n.mceasy.cloud/webhook/generator/manifest?type=k8s
- name: "Print Output Docker"
id: output
run: |
echo "${{ steps.generator.outputs.docker }}" > docker.file
echo "${{ steps.generator.outputs.k8s }}" > k8s.yml
- name: "Replace APP_NAME"
run: |