Skip to content

Commit

Permalink
Fixing stale actions reference
Browse files Browse the repository at this point in the history
  • Loading branch information
treideme committed Jul 21, 2023
1 parent 1560b9f commit ca82d82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,15 @@ runs:
- name: Sign executables
shell: cmd
working-directory: ${{ inputs.path }}
if: secrets.SIGNINGPASSWORD
run: |
signtool sign /f C:\Users\labforge\Documents\labforge.cer /csp "eToken Base Cryptographic Provider" /td sha256 /fd sha256 /k ${{ secrets.SIGNINGPASSWORD }} stereoviewer\install\stereoviewer.exe distribution\dist\main\updater.exe distribution\build\driver.exedist\main\driver.exe dist\main\driver.exe
#if: secrets.SIGNINGPASSWORD

- name: Build installer
shell: cmd
working-directory: ${{ inputs.path }}
run: |
call venv\Scripts\activate
REM Build distribution example (depends on most other samples)
Expand All @@ -69,9 +72,10 @@ runs:
- name: Sign installer
shell: cmd
working-directory: ${{ inputs.path }}
if: secrets.SIGNINGPASSWORD
run: |
signtool sign /f C:\Users\labforge\Documents\labforge.cer /csp "eToken Base Cryptographic Provider" /td sha256 /fd sha256 /k ${{ secrets.SIGNINGPASSWORD }} distribution\build\updater.exe
#if: secrets.SIGNINGPASSWORD
- name: Upload installer artifact
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
path: samples

- name: Build samples
uses: ./.github/actions/build
uses: ./samples/.github/actions/build
with:
artifact_name: installer
token: ${{ secrets.CITOKEN }}
Expand Down

0 comments on commit ca82d82

Please sign in to comment.