Skip to content

Commit c9f5287

Browse files
committed
Improve GitHub Actions workflow with better emoji and step descriptions
1 parent 16914e7 commit c9f5287

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

β€Ž.github/workflows/deploy.ymlβ€Ž

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: Deploy Cond8 Docs Worker
1+
# πŸ“¦ .github/workflows/deploy.yml
2+
name: πŸš€ Deploy to Cloudflare Workers
23

34
on:
45
push:
@@ -7,24 +8,25 @@ on:
78

89
jobs:
910
deploy:
11+
name: 🌍 Build & Deploy
1012
runs-on: ubuntu-latest
1113

1214
steps:
13-
- name: πŸ“¦ Checkout repo
15+
- name: 🧾 Checkout
1416
uses: actions/checkout@v4
1517

16-
- name: πŸ“ Set up Node + pnpm
18+
- name: πŸ“¦ Setup pnpm
1719
uses: pnpm/action-setup@v2
1820
with:
1921
version: 8
2022

21-
- name: 🧰 Install dependencies
23+
- name: πŸ“₯ Install Dependencies
2224
run: pnpm install
2325

24-
- name: πŸ› οΈ Build docs
26+
- name: πŸ› οΈ Build Project
2527
run: pnpm run build
2628

27-
- name: πŸš€ Deploy to Cloudflare Workers
28-
run: pnpm exec wrangler deploy
29+
- name: ☁️ Deploy to Cloudflare
2930
env:
3031
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
32+
run: pnpm exec wrangler deploy

0 commit comments

Comments
Β (0)