From c1b8881dd29258b83df74ac32dc0a53f6cab5f52 Mon Sep 17 00:00:00 2001 From: liukangtian Date: Sun, 15 Dec 2024 19:18:27 +0800 Subject: [PATCH] fix: change artifact download path --- .github/workflows/jekyll-gh-pages.yml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index 90e0f58..f75c88d 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -49,24 +49,9 @@ jobs: id-token: write steps: - # 下载 artifact - - name: Download artifact - uses: actions/download-artifact@v4 - with: - name: babylon_test - path: ./babylon_test - - # 解压 artifact - - name: Extract artifact - run: | - echo "Extracting artifact..." - unzip ./babylon_test/babylon_test.zip -d ./babylon_test/ - - # 调试:列出下载并解压后的文件 - - name: Debug - List downloaded files - run: | - echo "Listing extracted files:" - ls -R ./babylon_test + - uses: actions/download-artifact@v4 + - name: Display structure of downloaded files + run: ls -R # 部署到 GitHub Pages - name: Deploy to GitHub Pages