Skip to content

Commit

Permalink
Update webpack.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LinMoQC authored Oct 25, 2024
1 parent 7ede940 commit d960424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
docker push ${{ secrets.DOCKERHUB_USERNAME }}/memory_blog:latest
- name: Upload production-ready build files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3 # 更新为 v3
with:
name: production-files
path: ./dist # 根据你的 Vite 配置,这里可能是 ./build,或其他目录
Expand All @@ -56,7 +56,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3 # 更新为 v3
with:
name: production-files
path: ./dist # 与上传时的目录保持一致
Expand Down

0 comments on commit d960424

Please sign in to comment.