Skip to content

Commit

Permalink
ci: skip singpath for now
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 24, 2025
1 parent 761470e commit d5f0d3b
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@ jobs:
with:
name: dctools-executables
path: ./dist/DC-tools-for-Windows/*.exe
- name: Remove unsigned windows binaries
shell: bash
run: |
rm ./dist/DC-tools-for-Windows/*.exe
- name: Sign Windows executable
uses: signpath/github-action-submit-signing-request@v1
with:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: 'TODO'
project-slug: 'DC-tools-for-Windows'
signing-policy-slug: 'test-signing'
github-artifact-id: '${{steps.uploadBinaryArtifact.outputs.artifact-id}}'
wait-for-completion: true
output-artifact-directory: 'dist/DC-tools-for-Windows'
parameters: |
Version: "${{ env.RELEASE_VERSION }}"
# - name: Remove unsigned windows binaries
# shell: bash
# run: |
# rm ./dist/DC-tools-for-Windows/*.exe
# - name: Sign Windows executable
# uses: signpath/github-action-submit-signing-request@v1
# with:
# api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
# organization-id: 'TODO'
# project-slug: 'DC-tools-for-Windows'
# signing-policy-slug: 'test-signing'
# github-artifact-id: '${{steps.uploadBinaryArtifact.outputs.artifact-id}}'
# wait-for-completion: true
# output-artifact-directory: 'dist/DC-tools-for-Windows'
# parameters: |
# Version: "${{ env.RELEASE_VERSION }}"
- name: Create Windows installer
shell: bash
run: ./win_package.sh
Expand All @@ -58,22 +58,22 @@ jobs:
with:
name: dctools-installer
path: ./innosetup/Output/*.exe
- name: Remove unsigned windows installer
shell: bash
run: |
rm -rf ./innosetup/Output/*.exe
- name: Sign Windows installer
uses: signpath/github-action-submit-signing-request@v1
with:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: 'TODO'
project-slug: 'DC-tools-for-Windows'
signing-policy-slug: 'test-signing'
github-artifact-id: '${{steps.uploadBinaryArtifact.outputs.artifact-id}}'
wait-for-completion: true
output-artifact-directory: 'innosetup/Output'
parameters: |
Version: "${{ env.RELEASE_VERSION }}"
# - name: Remove unsigned windows installer
# shell: bash
# run: |
# rm -rf ./innosetup/Output/*.exe
# - name: Sign Windows installer
# uses: signpath/github-action-submit-signing-request@v1
# with:
# api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
# organization-id: 'TODO'
# project-slug: 'DC-tools-for-Windows'
# signing-policy-slug: 'test-signing'
# github-artifact-id: '${{steps.uploadBinaryArtifact.outputs.artifact-id}}'
# wait-for-completion: true
# output-artifact-directory: 'innosetup/Output'
# parameters: |
# Version: "${{ env.RELEASE_VERSION }}"
- name: Release Assets
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit d5f0d3b

Please sign in to comment.