chore(appium): test certificate without builiding #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UI Tests on Windows and MacOS 🧪 | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, edited] | |
jobs: | |
temp-windows: | |
runs-on: | |
labels: windows-latest | |
steps: | |
- name: Checkout Directory 🔖 | |
uses: actions/checkout@v4 | |
- name: Sign Wix Installer | |
uses: skymatic/code-sign-action@v1 | |
with: | |
certificate: "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | |
password: "${{ secrets.SM_CLIENT_CERT_PASSWORD }}" | |
certificatesha1: "${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }}" | |
certificatename: "Certificate for Uplink Installer" | |
description: "Uplink Installer" | |
timestampUrl: "http://timestamp.digicert.com" | |
folder: "target/wix/uplink-1.0.0-x86_64.msi" | |
recursive: true | |
- name: Upload Executable ⬆️ | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Uplink-windows-test | |
path: target/wix/*.msi |