Skip to content

Commit 2389a64

Browse files
committed
ci: update CD workflow and dependencies
- Rename workflow name from 'deploy' to 'cd' - Upgrade actions/checkout from v3 to v4 - Upgrade peaceiris/actions-gh-pages from v3 to v4
1 parent 6da9ca6 commit 2389a64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: deploy
1+
name: cd
22

33
# Run this workflow when a new release is published
44
on:
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
# 1. Checkout the repository code
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
# 2. Setup Flutter SDK
1717
- name: Setup Flutter
@@ -29,7 +29,7 @@ jobs:
2929

3030
# 5. Deploy the built app to GitHub Pages
3131
- name: Deploy
32-
uses: peaceiris/actions-gh-pages@v3
32+
uses: peaceiris/actions-gh-pages@v4
3333
with:
3434
github_token: ${{ secrets.GITHUB_TOKEN }}
3535
publish_dir: ./build/web

0 commit comments

Comments
 (0)