Skip to content

Commit 4534812

Browse files
committed
feat: 重命名工作流文件并添加项目信息输出和部署成功消息
1 parent cea1499 commit 4534812

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ jobs:
3030
uses: actions/checkout@v4
3131
- name: Setup Pages
3232
uses: actions/configure-pages@v5
33+
- name: Print Project Information
34+
run: |
35+
echo "=========================================="
36+
echo "Project: github-deploy"
37+
echo "Description: 使用github为网站提供部署服务以及部署流进程运行"
38+
echo "Website: https://dushenyan.github.io/github-deploy/"
39+
echo "Repository: https://github.com/dushenyan/github-deploy"
40+
echo "=========================================="
3341
- name: Build with Jekyll
3442
uses: actions/jekyll-build-pages@v1
3543
with:
@@ -49,3 +57,10 @@ jobs:
4957
- name: Deploy to GitHub Pages
5058
id: deployment
5159
uses: actions/deploy-pages@v4
60+
- name: Print Deployment Success Message
61+
run: |
62+
echo "=========================================="
63+
echo "Deployment completed successfully!"
64+
echo "Project github-deploy is now live at: ${{ steps.deployment.outputs.page_url }}"
65+
echo "Thank you for using GitHub Pages for deployment!"
66+
echo "=========================================="

0 commit comments

Comments
 (0)