upload ui assets to gitea

This commit is contained in:
Jörg Thalheim
2023-08-25 14:48:14 +02:00
parent 1cf814b4c1
commit 8f5d4e2e35
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ writeShellApplication
, curl
, nix
, gnutar
, gitMinimal
, coreutils
}:
writeShellApplication {
name = "update-ui-assets";
runtimeInputs = [
curl
nix
gnutar
gitMinimal
coreutils
];
text = builtins.readFile ./update-ui-assets.sh;
}