3 Commits

Author SHA1 Message Date
398ddde169 bump: v0.0.19 -> v0.0.20 2025-04-17 22:23:25 -04:00
74b9bb86a1 fix: don't check all 2025-04-17 22:20:52 -04:00
701f80540b fix: yaml formatting 2025-04-17 22:18:56 -04:00
6 changed files with 15 additions and 15 deletions

View File

@ -25,4 +25,4 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Run checks - name: Run checks
run: nix flake check --all-systems run: nix flake check

View File

@ -28,7 +28,7 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build - name: Build
run: >- run: >
nix build nix build
.#trevstack-linux-amd64 .#trevstack-linux-amd64
.#trevstack-linux-arm64 .#trevstack-linux-arm64

View File

@ -26,4 +26,4 @@ WORKDIR /app
# Copy /nix/store # Copy /nix/store
COPY --from=builder /tmp/nix-store-closure /nix/store COPY --from=builder /tmp/nix-store-closure /nix/store
COPY --from=builder /tmp/build/result /app COPY --from=builder /tmp/build/result /app
CMD ["/app/bin/server"] CMD ["/app/bin/trevstack"]

View File

@ -1,12 +1,12 @@
{ {
"name": "trevstack", "name": "trevstack",
"version": "0.0.19", "version": "0.0.20",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "trevstack", "name": "trevstack",
"version": "0.0.19", "version": "0.0.20",
"devDependencies": { "devDependencies": {
"@connectrpc/connect": "^2.0.2", "@connectrpc/connect": "^2.0.2",
"@connectrpc/connect-web": "^2.0.2", "@connectrpc/connect-web": "^2.0.2",

View File

@ -1,7 +1,7 @@
{ {
"name": "trevstack", "name": "trevstack",
"private": true, "private": true,
"version": "0.0.19", "version": "0.0.20",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

View File

@ -21,7 +21,7 @@
... ...
}: let }: let
pname = "trevstack"; pname = "trevstack";
version = "0.0.19"; version = "0.0.20";
build-systems = [ build-systems = [
"x86_64-linux" "x86_64-linux"
@ -138,7 +138,7 @@
pname = "check-client"; pname = "check-client";
inherit version; inherit version;
src = ./client; src = ./client;
npmDepsHash = "sha256-KBoxBJ21RCM2gXGgSC4zntyrPkEQlaPN+JD31LFgHl8="; npmDepsHash = "sha256-kZmwV99Qj6gjTk6PCMQZfqxGLzLHZOfZOqcYLufDztQ=";
dontNpmInstall = true; dontNpmInstall = true;
buildPhase = '' buildPhase = ''
@ -200,7 +200,7 @@
client = pkgs.buildNpmPackage { client = pkgs.buildNpmPackage {
inherit pname version; inherit pname version;
src = ./client; src = ./client;
npmDepsHash = "sha256-KBoxBJ21RCM2gXGgSC4zntyrPkEQlaPN+JD31LFgHl8="; npmDepsHash = "sha256-kZmwV99Qj6gjTk6PCMQZfqxGLzLHZOfZOqcYLufDztQ=";
installPhase = '' installPhase = ''
cp -r build "$out" cp -r build "$out"