Skip to content

Commit 507c416

Browse files
authored
Update iOS workflow to use dynamic artifact paths
1 parent 0eaa4cb commit 507c416

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ios.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,14 @@ jobs:
8282
- name: Download all artifacts
8383
uses: actions/download-artifact@v6
8484
with:
85-
path: artifacts
86-
pattern: fluidsynth-*
85+
path: ${{ steps.artifact_name.outputs.name }}-iOS
86+
pattern: ${{ steps.artifact_name.outputs.name }}-iOS
8787
merge-multiple: false
8888

8989
- name: Create release archives
9090
run: |
91-
cd artifacts
9291
ls -la
93-
zip -r "${{ steps.artifact_name.outputs.name }}-iOS.zip" *
92+
zip -r "${{ steps.artifact_name.outputs.name }}-iOS.zip" "${{ steps.artifact_name.outputs.name }}-iOS"
9493
9594
- name: Upload release assets
9695
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)