diff options
author | seth <getchoo@tuta.io> | 2023-07-25 19:22:48 -0400 |
---|---|---|
committer | seth <getchoo@tuta.io> | 2023-07-25 19:23:17 -0400 |
commit | fbf29274e8c0f9b362e1630c3cee1199a889fa9f (patch) | |
tree | f68be6d9d0df3398367efd20017a7cef735058b6 | |
parent | 3c35d647b87f774877b7c090186622801bd75f10 (diff) | |
download | PrismLauncher-fbf29274e8c0f9b362e1630c3cee1199a889fa9f.tar.gz PrismLauncher-fbf29274e8c0f9b362e1630c3cee1199a889fa9f.tar.bz2 PrismLauncher-fbf29274e8c0f9b362e1630c3cee1199a889fa9f.zip |
chore(ci): remove nix job
we're using garnix now
Signed-off-by: seth <getchoo@tuta.io>
-rw-r--r-- | .github/workflows/build.yml | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bbfe4ab4..c710d54b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -586,33 +586,3 @@ jobs: with: bundle: "Prism Launcher.flatpak" manifest-path: flatpak/org.prismlauncher.PrismLauncher.yml - - nix: - runs-on: ubuntu-latest - strategy: - matrix: - package: - - prismlauncher - - prismlauncher-qt5 - steps: - - name: Clone repository - if: inputs.build_type == 'Debug' - uses: actions/checkout@v3 - with: - submodules: 'true' - - name: Install nix - if: inputs.build_type == 'Debug' - uses: cachix/install-nix-action@v22 - with: - install_url: https://nixos.org/nix/install - extra_nix_config: | - auto-optimise-store = true - experimental-features = nix-command flakes - - uses: cachix/cachix-action@v12 - if: inputs.build_type == 'Debug' - with: - name: prismlauncher - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - - name: Build - if: inputs.build_type == 'Debug' - run: nix build .#${{ matrix.package }} --print-build-logs |