Skip to content

Commit b3757fc

Browse files
Fix build-native-image (#2566)
1 parent 7e83945 commit b3757fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
required: false
3131
default: false
3232
env:
33-
INPUT_REF: ${{ github.event.inputs.ref }}
33+
INPUT_REF: ${{ inputs.ref }}
3434

3535
jobs:
3636
build_native_images:
@@ -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: ${{ github.event.inputs.upload_artifact == 'true'}}
104+
if: ${{ inputs.upload_artifact == 'true'}}
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)}}

0 commit comments

Comments
 (0)