Skip to content

Commit

Permalink
why did i think this was platform
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Jul 19, 2024
1 parent eac930d commit d764028
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/app-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,10 @@ jobs:
echo 'type=develop' >> $GITHUB_OUTPUT
fi
- name: set summary
run: |
echo Type: ${{steps.determine-build-type.outputs.type}} Variants: ${{steps.determine-build-type.outputs.variants}}' >> $GITHUB_STEP_SUMMARY
build-app:
needs: [determine-build-type]
if: needs.determine-build-type.outputs.variants != '[]'
Expand Down Expand Up @@ -297,15 +301,15 @@ jobs:
make setup-js
- name: 'Configure Windows code signing environment'
if: contains(matrix.platform, 'windows') && contains(needs.determine-build-type.outputs.type, 'release')
if: startsWith(matrix.os, 'windows') && contains(needs.determine-build-type.outputs.type, 'release')
run:
echo "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 --decode > /d/Certificate_pkcs12.p12
echo "C:\Program Files (x86)\Windows Kits\10\App Certification Kit" >> $GITHUB_PATH
echo "C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools" >> $GITHUB_PATH
echo "C:\Program Files\DigiCert\ DigiCert Keylocker Tools" >> $GITHUB_PATH

- name: 'Setup Windows code signing helpers'
if: contains(matrix.platform, 'windows') && contains(needs.determine-build-type.outputs.type, 'release')
if: startsWith(matrix.os, 'windows') && contains(needs.determine-build-type.outputs.type, 'release')
shell: cmd
env:
SM_HOST: ${{ secrets.SM_HOST }}
Expand Down

0 comments on commit d764028

Please sign in to comment.