diff --git a/.github/workflows/pack_img.yaml b/.github/workflows/pack_img.yaml index 2c0587c..59233cc 100644 --- a/.github/workflows/pack_img.yaml +++ b/.github/workflows/pack_img.yaml @@ -44,6 +44,18 @@ jobs: with: path: images + - name: Save stitched image as artifact + uses: actions/upload-artifact@v3 + with: + name: auto_img_zh_cn # 上传生成的图片作为 artifact + path: auto_img_zh_cn.png # 替换为你生成图片的路径 + + - name: Save stitched image as artifact + uses: actions/upload-artifact@v3 + with: + name: auto_img_en # 上传生成的图片作为 artifact + path: auto_img_en.png # 替换为你生成图片的路径 + - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4