Skip to content

Commit

Permalink
fixed code sign issue with release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell Newman committed Mar 28, 2023
1 parent 535bf61 commit b6fd11c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Sign .exe
shell: pwsh
working-directory: 'codesigntool'
working-directory: 'codesigntool\CodeSignTool-v1.2.7-windows'
run: |
New-Item -Path "${{ env.STANDALONE_ARTIFACT_PATH }}unsigned" -ItemType Directory
Move-Item -Path "${{ env.STANDALONE_ARTIFACT_PATH }}OCTOPUS RAW Player.exe" -Destination "${{ env.STANDALONE_ARTIFACT_PATH }}unsigned\OCTOPUS RAW Player.exe"
Expand All @@ -100,7 +100,7 @@ jobs:

- name: Sign .msi
shell: pwsh
working-directory: 'codesigntool'
working-directory: 'codesigntool\CodeSignTool-v1.2.7-windows'
run: |
New-Item -Path "${{ env.INSTALLER_ARTIFACT_PATH }}unsigned" -ItemType Directory
Move-Item -Path "${{ env.INSTALLER_ARTIFACT_PATH }}${{env.BUILD_INSTALLER_NAME}}" -Destination "${{ env.INSTALLER_ARTIFACT_PATH }}unsigned\${{env.BUILD_INSTALLER_NAME}}"
Expand Down

0 comments on commit b6fd11c

Please sign in to comment.