Skip to content

Commit

Permalink
Replace non-existant function with sed
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbrooks committed Jan 12, 2025
1 parent d2832cf commit 2fd3a8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
run: ./gradlew build

- name: release binary
run: ./gradlew ${{ replace(replace(matrix.target, '-x', 'X'), '-a', 'A') }}Binary
run: |
VARIANT=$(echo ${{ matrix.target }} | sed -E 's/-x64/X64/; s/-arm64/Arm64/')
./gradlew ${variant}Binary
- name: archive vat
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 2fd3a8e

Please sign in to comment.