From 4ccfccb6a820c3b5de3e17c60ea3621125a8dcae Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 7 Jan 2024 23:35:05 -0500 Subject: update to 1.20.4 and move to fabric --- .github/workflows/build-modpack.yml | 27 --------------------------- .github/workflows/update-checksums.yml | 33 --------------------------------- .github/workflows/update-mods.yml | 28 ---------------------------- 3 files changed, 88 deletions(-) delete mode 100644 .github/workflows/build-modpack.yml delete mode 100644 .github/workflows/update-checksums.yml delete mode 100644 .github/workflows/update-mods.yml (limited to '.github') diff --git a/.github/workflows/build-modpack.yml b/.github/workflows/build-modpack.yml deleted file mode 100644 index 77db3ee..0000000 --- a/.github/workflows/build-modpack.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Build modpack - -on: - push: - paths: - # only run when prismlauncher modpack files are changed - - files/** - workflow_dispatch: - -jobs: - build-modpack: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v20 - - - name: build - run: | - nix build - cp result/getchoo-modpack.zip . - - - name: upload - uses: actions/upload-artifact@v3 - with: - name: getchoo-modpack.zip - path: getchoo-modpack.zip diff --git a/.github/workflows/update-checksums.yml b/.github/workflows/update-checksums.yml deleted file mode 100644 index 7a5b9a3..0000000 --- a/.github/workflows/update-checksums.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Update mod checksums - -on: - push: - paths: - # only run when mod files are changed - - mods/** - workflow_dispatch: - workflow_run: - workflows: ["Update mods"] - types: - - completed - -permissions: - contents: write - -jobs: - build-modpack: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v20 - - - name: generate new checksums - run: | - nix run --impure .#generate-checksums - - - name: commit changes - uses: EndBug/add-and-commit@v9 - with: - default_author: github_actions - message: "chore(flake): update mod checksums" diff --git a/.github/workflows/update-mods.yml b/.github/workflows/update-mods.yml deleted file mode 100644 index cca46ee..0000000 --- a/.github/workflows/update-mods.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Update mods - -on: - schedule: - # run on saturdays at 0:00 utc - - cron: "0 0 * * 6" - workflow_dispatch: - -jobs: - update-mods: - runs-on: ubuntu-latest - - permissions: - contents: write - - steps: - - uses: actions/checkout@v3.3.0 - - uses: cachix/install-nix-action@v20 - - - name: update - run: | - echo "y" | nix run nixpkgs#packwiz -- update --all - - - name: commit changes - uses: EndBug/add-and-commit@v9 - with: - default_author: github_actions - message: "chore: update mods" -- cgit v1.2.3