Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Aug 12, 2023
1 parent 53b05d3 commit e0dd6ba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
distribution: 'temurin'
java-version: ${{env.JAVA_VERSION}}
- uses: actions-rs/toolchain@v1
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-signing'
with:
toolchain: 'stable'
- name: Setup MacOS signing
Expand Down Expand Up @@ -86,14 +86,14 @@ jobs:
with:
arguments: packageDistributable
- name: Setup MSbuild
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-signing'
uses: microsoft/[email protected]
- name: Build MSIX
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-signing'
run: |
& 'C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/makeappx.exe' pack /d app/desktop/build/msix-workspace /p Tonbrett.msix
- name: Code Sign 2021
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-signing'
run: |
& 'C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x86/signtool.exe' sign /fd SHA256 /n "Open Source Developer, Michael Rittmeister" /t http://time.certum.pl/ /d Tonbrett Tonbrett.msix
- name: Notarize MacOS installer
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:

create_release:
name: Create Release
runs-on: windows-latest # for some weird reason this job does not get picked on ubuntu
runs-on: windows-signing # for some weird reason this job does not get picked on ubuntu
needs: [build_bot_artifacts, build_desktop_app, build_android_app]
if: startsWith(github.ref, 'refs/tags/')
steps:
Expand All @@ -188,7 +188,7 @@ jobs:
- uses: actions/download-artifact@v3
name: Download Artifacts from Windows
with:
name: desktopapp-windows-latest
name: desktopapp-windows-signing
- uses: actions/download-artifact@v3
name: Download Bot
with:
Expand Down

0 comments on commit e0dd6ba

Please sign in to comment.