Skip to content

Commit 8c15fe4

Browse files
Fix build-native-image action
1 parent b3757fc commit 8c15fe4

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build-native-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
sh -c "./gradlew -PnativeBuild -PnativeBuildMusl :temporal-test-server:nativeCompile"
102102
# path ends in a wildcard because on windows the file ends in '.exe'
103103
- name: Upload executable to workflow
104-
if: ${{ inputs.upload_artifact == 'true'}}
104+
if: ${{ inputs.upload_artifact }}
105105
uses: actions/upload-artifact@v4
106106
with:
107107
name: ${{ matrix.musl && format('{0}_{1}_musl', matrix.os_family, matrix.arch) || format('{0}_{1}', matrix.os_family, matrix.arch)}}

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,5 @@ jobs:
199199
name: Build native test server
200200
uses: ./.github/workflows/build-native-image.yml
201201
with:
202+
upload_artifact: true
202203
ref: ${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)