Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
build test
Browse files Browse the repository at this point in the history
  • Loading branch information
tanderson-ld committed Dec 15, 2023
1 parent 1d1963a commit 373caf1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,19 +78,19 @@ runs:
- name: Look at smctl
shell: bash
run: |
ls "/Users/runner/hostedtoolcache/smctl/latest/x64/DigiCert SSM Signing Clients"
ls "/Users/runner/hostedtoolcache/smctl/latest/x64/"
- name: Test calling help
shell: bash
run: smctl --help
# - name: Test calling help
# shell: bash
# run: smctl --help

- name: Sign DLLs
shell: bash
run: |
for dll in $(find ./src/LaunchDarkly.ClientSdk/bin/Release -name LaunchDarkly.ClientSdk.dll); do
echo "${dll}"
smctl sign --keypair-alias key_573919999 --config-file="/tmp/DigiCert One Signing Manager Tools/smtools-linux-x64/pkcs11properties.cfg" --input "${dll}"
done
# - name: Sign DLLs
# shell: bash
# run: |
# for dll in $(find ./src/LaunchDarkly.ClientSdk/bin/Release -name LaunchDarkly.ClientSdk.dll); do
# echo "${dll}"
# smctl sign --keypair-alias key_573919999 --config-file="/tmp/DigiCert One Signing Manager Tools/smtools-linux-x64/pkcs11properties.cfg" --input "${dll}"
# done

# - name: Create Nuget Package
# shell: bash
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,10 @@ jobs:
# certSha1Hash: $DIGICERT_CODE_SIGNING_CERT_SHA1_HASH
prerelease: ${{ inputs.prerelease }}
dry_run: ${{ inputs.dry_run }}

- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: /Users/runner/hostedtoolcache/smctl/latest/x64/smctl
retention-days: 1

0 comments on commit 373caf1

Please sign in to comment.