From c83ba2c5cde8020b50543f2788a2e26577f034b6 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Mon, 17 Jul 2023 10:47:27 +0800 Subject: [PATCH] ci: remove graphical installer for ISO workflow It's too big for the 2GB limitation for each release. I'll have to figure out how to trim it down. --- .github/workflows/iso.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/iso.yml b/.github/workflows/iso.yml index 4d730abf..9767a69e 100644 --- a/.github/workflows/iso.yml +++ b/.github/workflows/iso.yml @@ -3,7 +3,6 @@ on: push: branches: - master - - develop paths-ignore: - docs/ jobs: @@ -16,14 +15,12 @@ jobs: - name: Build ISO run: | nix build .#images.bootstrap --impure --out-link build-iso-result - nix build .#images.graphical-installer --impure --out-link build-graphical-iso-result env: NIXPKGS_ALLOW_BROKEN: "1" NIXPKGS_ALLOW_UNFREE: "1" - name: Create release - if: github.ref == 'refs/heads/master' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release delete latest --cleanup-tag --yes || true - gh release create latest --prerelease --generate-notes build-iso-result/iso/*.iso build-graphical-iso-result/iso/*.iso + gh release create latest --prerelease --generate-notes build-iso-result/iso/*.iso