This commit is contained in:
2025-10-07 07:29:44 +08:00
commit 0c877e0872
2 changed files with 26 additions and 0 deletions

14
.github/workflows/cd.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: CD
on:
workflow_run:
workflows: ["CI"]
branches: [dev]
types: [completed]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Echo Step 2
run: echo "Step 2"

12
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,12 @@
name: CI
on:
push:
branches: [dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Echo Step 1
run: echo "Step 1"