-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct filepath on windows and mac
Signed-off-by: jonathan zollinger <[email protected]>
- Loading branch information
1 parent
0aac6c9
commit c355bfb
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: upload native image binaries | ||
name: Publish New Release | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -14,10 +14,15 @@ jobs: | |
os: [macos-latest, windows-latest, ubuntu-latest] | ||
include: | ||
- os: macos-latest | ||
file: /Users/runner/work/microfetch/microfetch/build/native/nativeCompile/microfetch | ||
- os: ubuntu-latest | ||
file: /home/runner/work/microfetch/microfetch/build/native/nativeCompile/microfetch | ||
- os: windows-latest | ||
filetype: 'exe' | ||
file: D:\a\microfetch\microfetch\build\native\nativeCompile\microfetch.exe | ||
steps: | ||
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." | ||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" | ||
- run: echo "🔎 The name of your branch is ${{ github.ref_name }} and your repository is ${{ github.repository }}." | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: graalvm/setup-graalvm@v1 | ||
|
@@ -30,4 +35,4 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: microfetch-${{ matrix.os }} | ||
path: /home/runner/work/microfetch/microfetch/build/native/nativeCompile/microfetch${{ matrix.filetype }} | ||
path: ${{ matrix.file }} |