Skip to content

Commit

Permalink
chore(appium): test certificate without builiding
Browse files Browse the repository at this point in the history
  • Loading branch information
luisecm committed Apr 23, 2024
1 parent de1f2bb commit ef3e1bf
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test-certificate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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/*.msi"
recursive: true

- name: Upload Executable ⬆️
uses: actions/upload-artifact@v3
with:
name: Uplink-windows-test
path: target/wix/*.msi

0 comments on commit ef3e1bf

Please sign in to comment.