mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-22 15:55:09 +00:00
added ci automation
This commit is contained in:
parent
e642a804ca
commit
80e926d31e
1 changed files with 17 additions and 0 deletions
17
.github/workflows/vipcatering/build_and_push_full_image.yaml
vendored
Normal file
17
.github/workflows/vipcatering/build_and_push_full_image.yaml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
name: Hello World Workflow
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # Allows manual triggering via GitHub UI
|
||||||
|
push: # Optional: Trigger on push to main branch
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- feature/added-gh-workflow
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
hello-world-job:
|
||||||
|
name: Print Hello World
|
||||||
|
runs-on: [ "centr-gh-runner" ] # Use your custom runner
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Print Hello World
|
||||||
|
run: echo "Hello World!"
|
||||||
Loading…
Reference in a new issue