Skip to content

Commit

Permalink
fix Upload Artifact name (#1973)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnzhiZhang authored May 9, 2022
1 parent 9a99db6 commit 088d8ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pr-packer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,35 +92,35 @@ jobs:
- name: Upload Artifact 1.12.2
uses: actions/upload-artifact@v3.0.0
with:
name: Minecraft-Mod-Language-Package-1.12.2.zip
name: Minecraft-Mod-Language-Package-1.12.2
path: Minecraft-Mod-Language-Package-1.12.2/*
if: steps.changed-1122.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'

- name: Upload Artifact 1.16
uses: actions/upload-artifact@v3.0.0
with:
name: Minecraft-Mod-Language-Package-1.16.zip
name: Minecraft-Mod-Language-Package-1.16
path: Minecraft-Mod-Language-Package-1.16/*
if: steps.changed-116.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'

- name: Upload Artifact 1.16 fabric
uses: actions/upload-artifact@v3.0.0
with:
name: Minecraft-Mod-Language-Package-1.16-fabric.zip
name: Minecraft-Mod-Language-Package-1.16-fabric
path: Minecraft-Mod-Language-Package-1.16-fabric/*
if: steps.changed-116-fabric.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'

- name: Upload Artifact 1.18
uses: actions/upload-artifact@v3.0.0
with:
name: Minecraft-Mod-Language-Package-1.18.zip
name: Minecraft-Mod-Language-Package-1.18
path: Minecraft-Mod-Language-Package-1.18/*
if: steps.changed-118.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'

- name: Upload Artifact 1.18 fabric
uses: actions/upload-artifact@v3.0.0
with:
name: Minecraft-Mod-Language-Package-1.18-fabric.zip
name: Minecraft-Mod-Language-Package-1.18-fabric
path: Minecraft-Mod-Language-Package-1.18-fabric/*
if: steps.changed-118-fabric.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'

0 comments on commit 088d8ce

Please sign in to comment.