Skip to content

Commit

Permalink
Fix cross platform builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbrooks committed Jan 12, 2025
1 parent e149368 commit 9a3d4a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
if: ${{ contains(matrix.target, 'macos') || contains(matrix.target, 'linux') }}
run: |
VARIANT=$(echo ${{ matrix.target }} | sed -E 's/-x64/X64/; s/-arm64/Arm64/')
./gradlew ${variant}Binary
./gradlew "${variant}Binary"
- name: Archive vat-${{ matrix.target }}
if: ${{ contains(matrix.target, 'macos') || contains(matrix.target, 'linux') }}
Expand All @@ -56,5 +56,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: vat-${{ matrix.target }}.jar
path: build/libs/vat-${{ matrix.target }}.jar
path: build/libs/vat-${{ matrix.target }}-*.jar

0 comments on commit 9a3d4a8

Please sign in to comment.