From 9d890dea00b00fd391f1f8cfdd48ca0da2deb0c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20F=C3=B6rster?= Date: Tue, 29 Aug 2023 18:59:32 +0200 Subject: [PATCH] don't build universal for release (#2164) --- .github/workflows/make.yml | 6 ++++-- .github/workflows/release.yml | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index c24f0c72b..0c26e0341 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: 'npm' - run: npm ci - name: Install necessary FlatPak tools @@ -60,7 +60,9 @@ jobs: if [[ "${{ matrix.os }}" != "macos-latest" ]]; then npm run make else - npm run make -- --arch=universal + # doesn't work with signing ATM + # npm run make -- --arch=universal + npm run make fi - uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7bb2cfad9..e8abbca94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,5 +60,7 @@ jobs: if [[ "${{ matrix.os }}" != "macos-latest" ]]; then npm run publish else - npm run publish -- --arch=universal + # doesn't work with signing ATM + # npm run publish -- --arch=universal + npm run publish fi