4 Commits

Author SHA1 Message Date
6706330252 bump: v0.0.6 -> v0.0.7 2025-03-18 22:07:05 -04:00
2b03164307 feat: workflow caching 2025-03-18 22:05:36 -04:00
0ffc1cd7f9 bump: v0.0.5 -> v0.0.6 2025-03-18 21:53:16 -04:00
c418792653 fix: select all build files 2025-03-18 21:52:00 -04:00
4 changed files with 27 additions and 8 deletions

View File

@ -16,9 +16,27 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Nix - name: Install Nix
uses: cachix/install-nix-action@v31 uses: nixbuild/nix-quick-install-action@v30
- uses: nix-community/cache-nix-action@v6
with: with:
nix_path: nixpkgs=channel:nixos-unstable # restore and save a cache using this key
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }}
# if there's no cache hit, restore a cache by this prefix
restore-prefixes-first-match: nix-${{ runner.os }}-
# collect garbage until Nix store size (in bytes) is at most this number
# before trying to save a new cache
# 1G = 1073741824
gc-max-store-size-linux: 1G
# do purge caches
purge: true
# purge all versions of the cache
purge-prefixes: nix-${{ runner.os }}-
# created more than this number of seconds ago
# relative to the start of the `Post Restore and save Nix store` phase
purge-created: 0
# except any version with the key that is the same as the `primary-key`
purge-primary-key: never
- name: Build - name: Build
run: nix develop --command ts-build run: nix develop --command ts-build
@ -26,4 +44,5 @@ jobs:
- name: Create release - name: Create release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
with: with:
files: build/. files: |-
build/**

View File

@ -1,12 +1,12 @@
{ {
"name": "trevstack", "name": "trevstack",
"version": "0.0.5", "version": "0.0.7",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "trevstack", "name": "trevstack",
"version": "0.0.5", "version": "0.0.7",
"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.5", "version": "0.0.7",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

View File

@ -15,7 +15,7 @@
let let
pname = "trevstack"; pname = "trevstack";
version = "0.0.5"; version = "0.0.7";
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
@ -38,7 +38,7 @@
pname = "${pname}-client"; pname = "${pname}-client";
inherit version; inherit version;
src = gitignore.lib.gitignoreSource ./client; src = gitignore.lib.gitignoreSource ./client;
npmDepsHash = "sha256-19sYDoA0nX3XteC0jKrqhnE7050+on3gDg72QqNR080="; npmDepsHash = "sha256-AfXM/oPr4b4D9txgwzZFMJ8dXFugOwETkZAN8/SaTkk=";
nodejs = pkgs.nodejs_22; nodejs = pkgs.nodejs_22;
npmFlags = [ "--legacy-peer-deps" ]; npmFlags = [ "--legacy-peer-deps" ];