We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eaa4cb commit 507c416Copy full SHA for 507c416
.github/workflows/ios.yml
@@ -82,15 +82,14 @@ jobs:
82
- name: Download all artifacts
83
uses: actions/download-artifact@v6
84
with:
85
- path: artifacts
86
- pattern: fluidsynth-*
+ path: ${{ steps.artifact_name.outputs.name }}-iOS
+ pattern: ${{ steps.artifact_name.outputs.name }}-iOS
87
merge-multiple: false
88
89
- name: Create release archives
90
run: |
91
- cd artifacts
92
ls -la
93
- zip -r "${{ steps.artifact_name.outputs.name }}-iOS.zip" *
+ zip -r "${{ steps.artifact_name.outputs.name }}-iOS.zip" "${{ steps.artifact_name.outputs.name }}-iOS"
94
95
- name: Upload release assets
96
uses: softprops/action-gh-release@v2
0 commit comments