Skip to content

Commit 79d2171

Browse files
authored
chore: update workflows config (#34)
### What this PR does? 更新 workflow 配置 ```release-note None ```
1 parent 2b3ffae commit 79d2171

File tree

3 files changed

+33
-104
lines changed

3 files changed

+33
-104
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 104 deletions
This file was deleted.

.github/workflows/cd.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CD
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
jobs:
9+
cd:
10+
uses: halo-sigs/reusable-workflows/.github/workflows/plugin-cd.yaml@v1
11+
secrets:
12+
halo-username: ${{ secrets.HALO_USERNAME }}
13+
halo-password: ${{ secrets.HALO_PASSWORD }}
14+
permissions:
15+
contents: write
16+
with:
17+
app-id: app-QDFMI
18+
skip-node-setup: true

.github/workflows/ci.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
ci:
13+
uses: halo-sigs/reusable-workflows/.github/workflows/plugin-ci.yaml@v1
14+
with:
15+
skip-node-setup: true

0 commit comments

Comments
 (0)