Skip to content

Commit

Permalink
fix: align versions of upload / download artifact gha (#1922)
Browse files Browse the repository at this point in the history
Signed-off-by: Bryce McMath <[email protected]>
  • Loading branch information
bryce-mcmath authored Apr 16, 2024
1 parent 8921fbd commit 0eb5823
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/actions/export-ios-archive/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ inputs:
description: |
The file containing the export options to use
for signing the archive.
requred: true
required: true
ouput_artifact_ref:
description: |
The reference ID / name of the uploaded GitHub artifact
stored in GitHub by the upload action.
requred: true
required: true

runs:
using: composite
Expand All @@ -27,7 +27,7 @@ runs:
-verbose
- name: Upload signed artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.ouput_artifact_ref }}
path: export/BCWallet.ipa
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/actions/ship-to-saucelabs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
sauce_labs_name:
description: |
The name of the artifact shown in SauceLabs
requred: true
required: true
sauce_labs_description:
description: |
The description of the artifact show in SauceLabs.
Expand All @@ -20,7 +20,7 @@ inputs:
description: |
The referene ID / name of the uploaded GitHub artifact
stored in GitHub by the upload action. i.e my-artifact
requred: true
required: true
artifact_name:
description: |
The actual name of the artifact that would be
Expand All @@ -31,7 +31,7 @@ runs:
using: composite
steps:
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact_ref }}

Expand Down

0 comments on commit 0eb5823

Please sign in to comment.