Skip to content

Commit 35e7df3

Browse files
authored
Feature: New signer (#114)
* replace deprecated code signing step with new composite action and a different signer
1 parent ad9f952 commit 35e7df3

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,14 @@ jobs:
2828
run: mvn -B clean test -DdevCommandFileDir="${{ vars.MSVC_DEV_FILES_DIR }}"
2929
- name: Codesign DLL on release
3030
if: startsWith(github.ref, 'refs/tags/')
31-
uses: skymatic/code-sign-action@v3
31+
uses: skymatic/workflows/.github/actions/win-sign-action@450e322ff2214d0be0b079b63343c894f3ef735f
3232
with:
33-
certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
34-
password: ${{ secrets.WIN_CODESIGN_P12_PW }}
35-
certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
36-
timestampUrl: 'http://timestamp.digicert.com'
37-
folder: ./src/main/resources
33+
base-dir: src/main/resources
34+
file-extensions: dll
35+
username: ${{ secrets.WIN_CODESIGN_USERNAME }}
36+
password: ${{ secrets.WIN_CODESIGN_PW }}
37+
sign-description: 'Cryptomator'
38+
sign-url: 'https://cryptomator.org'
3839
- name: Package and Install
3940
id: packAndInstall
4041
run: mvn -B install -DskipNativeCompile

0 commit comments

Comments
 (0)