Skip to content

Commit baeea69

Browse files
committed
fixing env level
1 parent cdfaf07 commit baeea69

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/win_exe_sign_test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,11 @@ jobs:
137137
windows-sign:
138138
runs-on: windows-latest
139139
needs: macos-build
140+
env:
141+
JKS_B64: ${{ secrets.JARSIGNER_REL_KEYSTORE_B64 }}
142+
JKS_PASS: ${{ secrets.JARSIGNER_REL_STOREPASS }}
143+
ALIAS: ${{ secrets.JARSIGNER_REL_ALIAS }}
144+
PFX_PASS: ${{ secrets.JARSIGNER_REL_STOREPASS }}
140145
steps:
141146
- uses: actions/checkout@v3
142147

@@ -151,11 +156,6 @@ jobs:
151156
Expand-Archive -Path (Get-ChildItem -Path artifacts -Filter "*win32.win32.x86_64.zip").FullName -DestinationPath extracted
152157
153158
- name: Decode JKS and convert to PFX
154-
env:
155-
JKS_B64: ${{ secrets.JARSIGNER_REL_KEYSTORE_B64 }}
156-
JKS_PASS: ${{ secrets.JARSIGNER_REL_STOREPASS }}
157-
ALIAS: ${{ secrets.JARSIGNER_REL_ALIAS }}
158-
PFX_PASS: ${{ secrets.JARSIGNER_REL_STOREPASS }}
159159
run: |
160160
echo $env:JKS_B64 | Out-File encoded.b64 -Encoding ASCII
161161
certutil -decode encoded.b64 mykeystore.jks

0 commit comments

Comments
 (0)