coba generate dockerfile
All checks were successful
Build and Test / build (push) Successful in 1m7s

This commit is contained in:
Ahmad Ardiansyah
2025-09-28 09:54:01 +07:00
parent 09f4d5ee46
commit 6d258707a1

View File

@@ -0,0 +1,26 @@
name: Build and Test
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: k8s-runner-00
env:
REGISTRY: registry.staging:5000
IMAGE_NAME: ${{ gitea.repository }}
IMAGE_TAG: ${{ gitea.sha }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: "Generate Dockerfile"
run: curl -o Dockerfile https://n8n.mceasy.cloud/webhook/generator/dockerfile
- name: "Build Docker Image"
run: docker build -t $REGISTRY/$IMAGE_NAME:$IMAGE_TAG .