Skip to content

Commit

Permalink
fix: correct filepath on windows and mac
Browse files Browse the repository at this point in the history
Signed-off-by: jonathan zollinger <[email protected]>
  • Loading branch information
Jonathan-Zollinger committed Jan 4, 2024
1 parent 0aac6c9 commit c355bfb
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/upload-release-binaries.yml
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:
Expand All @@ -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
Expand All @@ -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 }}

0 comments on commit c355bfb

Please sign in to comment.