From 1db70407c2c40380ad4fbdab70218a60662900a4 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Wed, 29 Jan 2025 23:50:59 +0000 Subject: [PATCH] ci: test the geyzer update4 Will only run once a day --- .forgejo/workflows/geyser.yml | 4 ++-- flake.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 4ec90ad..410891e 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -2,7 +2,7 @@ on: workflow_dispatch: schedule: - - cron: '* * * * *' + - cron: '0 0 * * *' # using code from the nixos repo jobs: @@ -32,7 +32,7 @@ jobs: with: ref: ${{ matrix.branch }} token: ${{ secrets.PIPELINE_TOKEN }} - - run: nix run .#update_geyser -- update geyser + - run: nix run .#update_plugin -- update geyser shell: bash - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 with: diff --git a/flake.nix b/flake.nix index 952884d..fd677f5 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ }; packages = { - # nix run .#update_geyser -- update $PLUGIN_NAME + # nix run .#update_plugin -- update $PLUGIN_NAME update_plugin = (pkgs.callPackage ./nix/packwiz.nix {}); }; }