Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wanquanw committed Dec 23, 2024
1 parent 0ceeec0 commit 16440e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
- name: 生成带mod本体的包 移动到workspace文件夹
run: |
./packwiz curseforge export
mv *.zip ../*-full-release.zip
unzip ../*-full-release.zip
mv *.zip ../full-release.zip
unzip ../full-release.zip -d ../full-release
ls ..
- name: 检测并生成mods meta信息
run: |
Expand All @@ -47,17 +47,17 @@ jobs:
- name: 生成不带mod本体的包
run: |
./packwiz curseforge export
mv *.zip ../*-lite-release.zip
unzip ../*-lite-release.zip
mv *.zip ../lite-release.zip
unzip ../lite-release.zip -d ../lite-release
ls ..
- name: 上传带mod包
uses: actions/upload-artifact@v4
with:
name: full-release
path: ../*-full-release.zip
path: ../full-release.zip
- name: 上传不带mod包
uses: actions/upload-artifact@v4
with:
name: lite-release
path: ../*-lite-release.zip
path: ../lite-release.zip
- run: echo "🍏 This job's status is ${{ job.status }}."

0 comments on commit 16440e5

Please sign in to comment.