Skip to content

Commit 2d11035

Browse files
authored
Fix artifact name references in iOS workflow
1 parent 507c416 commit 2d11035

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ios.yml

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

8989
- name: Create release archives
9090
run: |
9191
ls -la
92-
zip -r "${{ steps.artifact_name.outputs.name }}-iOS.zip" "${{ steps.artifact_name.outputs.name }}-iOS"
92+
zip -r "${{ steps.artifact_name.outputs.name }}-iOS.zip" "${{ needs.ios-build.outputs.artifact_name }}-iOS"
9393
9494
- name: Upload release assets
9595
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)