Skip to content

Commit

Permalink
Fix output path
Browse files Browse the repository at this point in the history
BUILD_DIR is ignored if -scheme is added
  • Loading branch information
1Revenger1 committed Oct 9, 2024
1 parent c0bba6a commit 58e356b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
run: |
echo "sha_short=$(git rev-parse --short=8 ${{ github.sha }})" >> $GITHUB_OUTPUT
- run: xcodebuild -scheme VoodooRMI -jobs 1 -configuration Debug
- run: xcodebuild -scheme VoodooRMI -jobs 1 -configuration Release
- run: xcodebuild -scheme VoodooRMI -jobs 1 -configuration Debug -derivedDataPath build
- run: xcodebuild -scheme VoodooRMI -jobs 1 -configuration Release -derivedDataPath build

- uses: actions/upload-artifact@v4
with:
name: VoodooRMI-${{ steps.vars.outputs.sha_short }}
path: build/*/*.zip
path: build/Build/Products/*/*.zip

0 comments on commit 58e356b

Please sign in to comment.