From 952a49bb5c6783cc33383b3739350ac9405c3448 Mon Sep 17 00:00:00 2001 From: RunDevelopment Date: Fri, 3 Nov 2023 16:05:33 +0100 Subject: [PATCH 1/4] Fix macOS for real this time --- .github/workflows/release-test.yml | 1 + .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 8a84ede16..ee2ee235b 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -40,5 +40,6 @@ jobs: if [[ "${{ matrix.os }}" != "macos-13" ]]; then npm run publish -- --dry-run else + npm i appdmg@0.6.6 npm run publish -- --dry-run --arch=universal fi diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3223e5bc0..df1ff992d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,5 +61,6 @@ jobs: if [[ "${{ matrix.os }}" != "macos-13" ]]; then npm run publish else + npm i appdmg@0.6.6 npm run publish -- --arch=universal fi From 6cb3f00fa3ee089e16d871573a4c0d747e3c2579 Mon Sep 17 00:00:00 2001 From: RunDevelopment Date: Fri, 3 Nov 2023 16:24:55 +0100 Subject: [PATCH 2/4] Fuck you installs --- .github/workflows/release-test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index ee2ee235b..2c254f626 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -32,14 +32,11 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18 - - run: npm ci - name: publish --dry-run shell: bash run: | - npm ci if [[ "${{ matrix.os }}" != "macos-13" ]]; then npm run publish -- --dry-run else - npm i appdmg@0.6.6 npm run publish -- --dry-run --arch=universal fi From 4f0147b23f9ff5b4fefa6fb111a4e23828b6e337 Mon Sep 17 00:00:00 2001 From: RunDevelopment Date: Fri, 3 Nov 2023 16:41:19 +0100 Subject: [PATCH 3/4] not all installs --- .github/workflows/release-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 2c254f626..0c9ce54f6 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -32,11 +32,13 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18 + - run: npm ci - name: publish --dry-run shell: bash run: | if [[ "${{ matrix.os }}" != "macos-13" ]]; then npm run publish -- --dry-run else + npm i appdmg@0.6.6 npm run publish -- --dry-run --arch=universal fi From a027ab94c1cbab0cb38166cbedaff3c6a346cab3 Mon Sep 17 00:00:00 2001 From: RunDevelopment Date: Fri, 3 Nov 2023 17:03:24 +0100 Subject: [PATCH 4/4] Disable macos --- .github/workflows/release-test.yml | 7 +++++-- .github/workflows/release.yml | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 0c9ce54f6..4a0ec9846 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -25,7 +25,11 @@ jobs: strategy: matrix: - os: [macos-13, ubuntu-latest, windows-latest] + os: [ + # macos-13, + ubuntu-latest, + windows-latest + ] steps: - uses: actions/checkout@v3 @@ -39,6 +43,5 @@ jobs: if [[ "${{ matrix.os }}" != "macos-13" ]]; then npm run publish -- --dry-run else - npm i appdmg@0.6.6 npm run publish -- --dry-run --arch=universal fi diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df1ff992d..6cba0723c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,11 @@ jobs: strategy: matrix: - os: [macos-13, ubuntu-latest, windows-latest] + os: [ + # macos-13, + ubuntu-latest, + windows-latest + ] steps: - uses: actions/checkout@v3 @@ -61,6 +65,5 @@ jobs: if [[ "${{ matrix.os }}" != "macos-13" ]]; then npm run publish else - npm i appdmg@0.6.6 npm run publish -- --arch=universal fi