Skip to content

Commit

Permalink
Merge pull request #3 from Q42/fix-artifact-name
Browse files Browse the repository at this point in the history
Fix invalid artifact names
  • Loading branch information
mbernson authored Jun 10, 2024
2 parents 90e6264 + 4a6ccbb commit 3a43fa2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: ${{ env.SCHEME }}-${{ github.ref_name }}-${{ github.sha }}.xcresult
name: ${{ env.SCHEME }}-${{ github.sha }}.xcresult
path: ${{ env.TEST_RESULT_BUNDLE }}

- name: Archive build
Expand Down Expand Up @@ -115,5 +115,5 @@ jobs:
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.SCHEME }}-${{ github.ref_name }}-${{ github.sha }}.xcarchive
name: ${{ env.SCHEME }}-${{ github.sha }}.xcarchive
path: ${{ runner.temp }}/${{ env.ARCHIVE_PATH }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ jobs:
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: ${{ env.SCHEME }}-${{ github.ref_name }}-${{ github.sha }}.xcresult
name: ${{ env.SCHEME }}-${{ github.sha }}.xcresult
path: ${{ env.TEST_RESULT_BUNDLE }}

0 comments on commit 3a43fa2

Please sign in to comment.