Skip to content

Commit

Permalink
Correct package path for signtool (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Aug 19, 2024
1 parent c65c6ac commit 1adad6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ant-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:
AZURE_ENDPOINT: ${{ secrets.AZURE_ENDPOINT }}
AZURE_CODE_SIGNING_NAME: ${{ secrets.AZURE_CODE_SIGNING_NAME }}
AZURE_CERT_PROFILE_NAME: ${{ secrets.AZURE_CERT_PROFILE_NAME }}
SIGNTOOLDIR: C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.3233/x64
SIGNTOOLDIR: ${{ github.workspace }}/Microsoft.Windows.SDK.BuildTools/bin/10.0.22621.0/x64
run: |
ant -noinput -buildfile build.xml binaryAppPackage
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:
AZURE_ENDPOINT: ${{ secrets.AZURE_ENDPOINT }}
AZURE_CODE_SIGNING_NAME: ${{ secrets.AZURE_CODE_SIGNING_NAME }}
AZURE_CERT_PROFILE_NAME: ${{ secrets.AZURE_CERT_PROFILE_NAME }}
SIGNTOOLDIR: C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.3233/x64
SIGNTOOLDIR: ${{ github.workspace }}/Microsoft.Windows.SDK.BuildTools/bin/10.0.22621.0/x64
run: |
ant -noinput -buildfile build.xml binaryPackage
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@
<attrib file="${basedir}\${dist.dir}\${ant.project.name}-${app.version}.msi" readonly="false" />
<echo message="xxxx Sign the windows binary xxxx"/>
<!-- Sign the generated exe -->
<exec executable="${env.SIGNTOOLDIR}\signtool.exe" failifexecutionfails="false">
<exec executable="${env.SIGNTOOLDIR}/signtool.exe" failifexecutionfails="false">
<arg value="sign" />
<arg value="/v" />
<arg value="/debug" />
Expand Down

0 comments on commit 1adad6e

Please sign in to comment.