Skip to content

Commit

Permalink
Fix signed bundle paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikescops committed Jan 16, 2024
1 parent b1b8648 commit 5bfffd5
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3

- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: artifacts

- name: List artifacts
run: ls -R artifacts
shell: bash

- name: Sign Artifact with CodeSignTool
uses: sslcom/esigner-codesign@develop
with:
Expand All @@ -56,9 +67,9 @@ jobs:
# OAuth TOTP Secret (https://www.ssl.com/how-to/automate-esigner-ev-code-signing)
totp_secret: ${{ secrets.ES_TOTP_SECRET }}
# Path of code object to be signed
file_path: ${GITHUB_WORKSPACE}/bundle/dcli-win-x64.exe
file_path: artifacts/dcli-win-x64/dcli-win-x64.exe
# Directory where signed code object(s) will be written.
output_path: ${GITHUB_WORKSPACE}/signed
output_path: signed
malware_block: false
environment_name: PROD

Expand Down

0 comments on commit 5bfffd5

Please sign in to comment.