From 9bb19b013053431efee9dcaf8ddb859036f22491 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Thu, 25 Jun 2026 00:51:46 +0200 Subject: [PATCH] extra sign steps for ps1 Signed-off-by: Armin Schrenk --- .github/workflows/win-exe.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/win-exe.yml b/.github/workflows/win-exe.yml index f0307811d..296f83385 100644 --- a/.github/workflows/win-exe.yml +++ b/.github/workflows/win-exe.yml @@ -229,11 +229,23 @@ jobs: uses: ./.github/actions/win-sign-action with: base-dir: ${{ github.workspace }}\appdir + file-extensions: 'exe,dll' recursive: true append-signature: true tenant-id: ${{ secrets.AZURE_TENANT_ID }} client-id: ${{ secrets.AZURE_CLIENT_ID }} client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} + - name: Sign Scripts with Azure Trusted Signing + if: inputs.sign || github.event_name == 'schedule' + uses: ./.github/actions/win-sign-action + with: + base-dir: ${{ github.workspace }}\appdir\Cryptomator + file-extensions: 'ps1' + recursive: false + append-signature: true + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + client-id: ${{ secrets.AZURE_CLIENT_ID }} + client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} - name: Upload artifacts uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: