Skip to content

Commit

Permalink
Remove codesign on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
variar committed Nov 28, 2021
1 parent 94408bb commit f138093
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,15 +295,15 @@ jobs:
- uses: ./.github/actions/agent-run-tests

#Package
- name: Win codesign executables
if: ${{ github.event_name != 'pull_request' }}
uses: apptim/code-sign-action@v8
with:
certificate: '${{ secrets.MS_CODESIGN_BASE64 }}'
password: '${{ secrets.MS_CODESIGN_PASSWORD }}'
certificatesha1: '${{ secrets.MS_CODESIGN_HASH }}'
folder: '${{ env.KLOGG_BUILD_ROOT }}\output'
recursive: true
#- name: Win codesign executables
# if: ${{ github.event_name != 'pull_request' }}
# uses: apptim/code-sign-action@v8
# with:
# certificate: '${{ secrets.MS_CODESIGN_BASE64 }}'
# password: '${{ secrets.MS_CODESIGN_PASSWORD }}'
# certificatesha1: '${{ secrets.MS_CODESIGN_HASH }}'
# folder: '${{ env.KLOGG_BUILD_ROOT }}\output'
# recursive: true

- name: Win portable
shell: cmd
Expand All @@ -324,15 +324,15 @@ jobs:
xcopy klogg-%KLOGG_VERSION%-%KLOGG_ARCH%-pdb.zip %KLOGG_BUILD_ROOT%\packages\ /y
xcopy klogg-%KLOGG_VERSION%-%KLOGG_ARCH%-setup.exe %KLOGG_BUILD_ROOT%\packages\ /y
- name: Win codesign installer
if: ${{ github.event_name != 'pull_request' }}
uses: apptim/code-sign-action@v8
with:
certificate: '${{ secrets.MS_CODESIGN_BASE64 }}'
password: '${{ secrets.MS_CODESIGN_PASSWORD }}'
certificatesha1: '${{ secrets.MS_CODESIGN_HASH }}'
folder: '${{ env.KLOGG_BUILD_ROOT }}\packages'
recursive: true
#- name: Win codesign installer
# if: ${{ github.event_name != 'pull_request' }}
# uses: apptim/code-sign-action@v8
# with:
# certificate: '${{ secrets.MS_CODESIGN_BASE64 }}'
# password: '${{ secrets.MS_CODESIGN_PASSWORD }}'
# certificatesha1: '${{ secrets.MS_CODESIGN_HASH }}'
# folder: '${{ env.KLOGG_BUILD_ROOT }}\packages'
# recursive: true

# Final upload of all packages
- uses: actions/upload-artifact@v2
Expand Down

0 comments on commit f138093

Please sign in to comment.