diff options
| author | Stefan Boberg <[email protected]> | 2024-03-13 10:07:54 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2024-03-13 10:07:54 +0100 |
| commit | 55cca72bd22219631304b13b11d9573989b02d7b (patch) | |
| tree | 6be2ac86eabfd5f722701d007573c708c4121ecc /.github/workflows | |
| parent | workflow tweaks (diff) | |
| download | zen-55cca72bd22219631304b13b11d9573989b02d7b.tar.xz zen-55cca72bd22219631304b13b11d9573989b02d7b.zip | |
updates to signing
macOS signs executables again
Windows releases do not (neither does validate)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/create_release.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/validate.yml | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 77ecc2f38..06cfe082a 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -44,7 +44,8 @@ jobs: - name: Bundle run: | - xmake bundle -v -y --codesignidentity="Epic Games" + xmake bundle -v -y +# xmake bundle -v -y --codesignidentity="Epic Games" env: VCPKG_ROOT: ${{ github.workspace }}/.vcpkg diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 3cf72f2af..5152d8ad0 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -226,8 +226,8 @@ jobs: - name: Bundle if: ${{ matrix.config == 'release' }} - run: | # xmake bundle -v -y --codesignidentity="Developer ID Application" - xmake bundle -v -y + run: | + xmake bundle -v -y --codesignidentity="Developer ID Application" env: VCPKG_ROOT: ${{ github.workspace }}/.vcpkg |