Compare commits

...
Sign in to create a new pull request.

31 commits

Author SHA1 Message Date
Skynet
8904e14a27 Updated geyser for main 2025-09-21 00:01:14 +00:00
Skynet
683eca8367 Updated geyser for main 2025-09-20 00:00:48 +00:00
Skynet
36e7896f07 Updated geyser for main 2025-09-18 00:00:56 +00:00
Skynet
0a74e1f9a6 Updated geyser for main 2025-09-16 00:01:12 +00:00
Skynet
831b9ffda9 Updated geyser for main 2025-09-14 00:01:01 +00:00
Skynet
9ad0b9820e Updated geyser for main 2025-09-13 00:00:56 +00:00
Skynet
40bd725b3c Updated geyser for main 2025-09-12 00:00:48 +00:00
Skynet
955b95c27c Updated geyser for main 2025-09-11 00:00:47 +00:00
Skynet
5c8888dc22 Updated geyser for main 2025-09-05 00:00:54 +00:00
Skynet
766eac8913 Updated geyser for main 2025-09-04 00:02:44 +00:00
Skynet
f067c0ee01 Updated geyser for main 2025-08-24 00:02:41 +00:00
Skynet
e19b46f92b Updated geyser for main 2025-08-21 00:04:11 +00:00
Skynet
5059fcc4c5 Updated geyser for main 2025-08-15 00:02:54 +00:00
Skynet
dbc4613044 Updated geyser for main 2025-08-12 14:50:01 +00:00
Skynet
665c43c0a3 Updated geyser for main 2025-08-05 23:10:55 +00:00
08bd6b5aa0 test: see if skipping the head "branch" works 2025-08-05 23:09:45 +00:00
3299103050 test: dig into why this isnt running 2025-08-05 23:04:53 +00:00
Skynet
785e3f7189 Updated geyser for main 2025-06-16 15:55:15 +00:00
Skynet
75ce74dc8f Updated geyser for main 2025-06-11 00:03:33 +00:00
Skynet
0f53a996fd Updated geyser for main 2025-05-29 00:03:15 +00:00
Skynet
6d370db912 Updated geyser for main 2025-05-26 00:01:59 +00:00
Skynet
d8a46c37d7 Updated geyser for main 2025-05-19 00:03:33 +00:00
Skynet
cdeee718ee Updated geyser for main 2025-05-17 00:01:30 +00:00
Skynet
5026f5557d Updated geyser for main 2025-05-16 00:01:30 +00:00
Skynet
a7d8333d68 Updated geyser for main 2025-05-15 07:29:06 +00:00
1492379094
fix: better handling of lfs 2025-05-15 08:27:15 +01:00
3432122a73
feat: now hidfes what path ye are on and inbuilds the `[Skynet Dev]` into teh terminal 2025-05-08 22:24:59 +01:00
b0b4e95ba2
fix@ properly set teh datapack folder 2025-05-08 22:14:46 +01:00
d9c4ea3dc7
feat: use a better version of packwiz 2025-05-08 21:59:05 +01:00
e3f139b8b0
fix: tidy up what goes into teh Pack 2 2025-05-08 21:45:17 +01:00
58f1cfd110
fix: tidy up what goes into teh Pack 2025-05-08 21:44:57 +01:00
7 changed files with 33 additions and 19 deletions

View file

@ -16,6 +16,15 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${{ secrets.PIPELINE_TOKEN }} token: ${{ secrets.PIPELINE_TOKEN }}
- name: "Get LFS objects"
uses: https://forgejo.skynet.ie/Skynet/actions/get_lfs@v3
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
- name: Get all LFS objects
run: |
# Pull in all objects for all branches
git lfs fetch --all
- name: setup git config - name: setup git config
run: | run: |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default # setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
@ -27,9 +36,16 @@ jobs:
branches=() branches=()
eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/remotes/origin/)" eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/remotes/origin/)"
for branch in "${branches[@]}"; do for branch in "${branches[@]}"; do
# for debugging
echo "$branch"
if [ "$branch" == "refs/remotes/origin/HEAD" ]; then
continue
fi
# need to convert "'refs/remotes/origin/main" to "main" # need to convert "'refs/remotes/origin/main" to "main"
branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $4 }') branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $4 }')
git switch $branch_local git switch $branch_local
git lfs pull
git status git status
nix run .#update_plugin -- update geyser nix run .#update_plugin -- update geyser

View file

@ -1,8 +1,13 @@
# DOnt add teh IDE's # No need to have anything outside teh packwiz files inside teh pack
/.forgejo
/.idea /.idea
/docs
/nix
.git*
# dont add nix stuff # dont add nix stuff
flake.* flake.*
/nix
# Dont add documentation
*.md *.md

View file

@ -7,7 +7,6 @@
}; };
nixConfig = { nixConfig = {
bash-prompt-suffix = "[Skynet Dev] ";
extra-substituters = "https://nix-cache.skynet.ie/skynet-cache"; extra-substituters = "https://nix-cache.skynet.ie/skynet-cache";
extra-trusted-public-keys = "skynet-cache:zMFLzcRZPhUpjXUy8SF8Cf7KGAZwo98SKrzeXvdWABo="; extra-trusted-public-keys = "skynet-cache:zMFLzcRZPhUpjXUy8SF8Cf7KGAZwo98SKrzeXvdWABo=";
}; };
@ -29,6 +28,7 @@
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
name = "Skynet Mod env"; name = "Skynet Mod env";
packages = packages_local; packages = packages_local;
shellHook = "export PS1='[Skynet Dev] '";
}; };
packages = { packages = {

View file

@ -1,13 +1,5 @@
hash-format = "sha256" hash-format = "sha256"
[[files]]
file = ".forgejo/actions/update_branch/action.yml"
hash = "d766aa4529c72ab0b451e518367bd8b58126697181670248397b13db6ab16cb2"
[[files]]
file = ".forgejo/workflows/geyser.yml"
hash = "552840ea9426de23a692cd4f0dabef497acff0918d9fac9c074ad7a328cb2df5"
[[files]] [[files]]
file = "plugins/essentialsx-discord.pw.toml" file = "plugins/essentialsx-discord.pw.toml"
hash = "3980e4f0ba4095425a76680031b9c469eda86845879160c34679d626b531c776" hash = "3980e4f0ba4095425a76680031b9c469eda86845879160c34679d626b531c776"
@ -25,7 +17,7 @@ metafile = true
[[files]] [[files]]
file = "plugins/geyser.pw.toml" file = "plugins/geyser.pw.toml"
hash = "7dce743e21119b286b2014756451e7e860ef4a9d06d708eb449e835df5d54f2f" hash = "cfcebc4e44d75a227f46216b100437fb3d1dc786b10c6e517790f6aca2cbcff3"
metafile = true metafile = true
[[files]] [[files]]

View file

@ -8,13 +8,13 @@
buildGoModule { buildGoModule {
pname = "packwiz"; pname = "packwiz";
version = "0-unstable-2024-10-15"; version = "0-unstable-2025-05-08";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Silver-Golden"; owner = "Silver-Golden";
repo = "packwiz"; repo = "packwiz";
rev = "453264019e54eae69f495078b0f3fa073f071e73"; rev = "7ae91a58dbec3b76ce0aaaf15aeba3118021a34f";
sha256 = "sha256-x6Z8MLaacZFlRYOVkTU+ffYtCJu4FAB3I2W/uQITwns="; sha256 = "sha256-3zUkePmVJTpU9+mkLyeqlZ1KNVDXNsFvoh8ifwXya1M=";
}; };
passthru.updateScript = unstableGitUpdater { }; passthru.updateScript = unstableGitUpdater { };

View file

@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0"
[index] [index]
file = "index.toml" file = "index.toml"
hash-format = "sha256" hash-format = "sha256"
hash = "93853b87fdbba621190f0cbacbcee0475f153c3d9eb744a8c2d0c2c4bfad4556" hash = "8232fce7440db8e2f5f8be1a01d74cf04852e9f8a220f32803614b7a1cecc814"
[versions] [versions]
minecraft = "1.21.5" minecraft = "1.21.5"
@ -13,3 +13,4 @@ purpur = "2428"
[options] [options]
acceptable-game-versions = ["1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5"] acceptable-game-versions = ["1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5"]
datapack-folder = "plugins"

View file

@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar"
side = "server" side = "server"
[download] [download]
url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/xIN8Ujrm/Geyser-Spigot.jar" url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/29cMfxqV/Geyser-Spigot.jar"
hash-format = "sha512" hash-format = "sha512"
hash = "6ac40376aa5603e1a8de7c4fe39fe4925c76e26b1a66a1a9db43995542195d620c7adf1079ba75c7205d9f62ab16f3897fca3da0c7fa6ad18fab63a6ac2a6304" hash = "e2b7d92bda3c4ef0f61027ed321816b9d8a88d4c60ab38279caa36c776f767588260fed4f3de183ec518a764695552e2cb7d6165c55f7c2c8a655f97a3109c4c"
[update] [update]
[update.modrinth] [update.modrinth]
mod-id = "wKkoqHrH" mod-id = "wKkoqHrH"
version = "xIN8Ujrm" version = "29cMfxqV"