From 0c877e0872e312a2ac141ead43bbd4d902592384 Mon Sep 17 00:00:00 2001 From: cialloo Date: Tue, 7 Oct 2025 07:29:44 +0800 Subject: [PATCH] init --- .github/workflows/cd.yml | 14 ++++++++++++++ .github/workflows/ci.yml | 12 ++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .github/workflows/cd.yml create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000..7127937 --- /dev/null +++ b/.github/workflows/cd.yml @@ -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" \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..74d4820 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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" \ No newline at end of file