2 Commits

Author SHA1 Message Date
62358e100c bump: v0.0.36 -> v0.0.37
Some checks failed
Check / check (push) Has been skipped
Release / check (push) Failing after 0s
Release / release (push) Has been skipped
Release / package (push) Has been skipped
2025-05-17 01:20:13 -04:00
7ee1cd94dc fix: use ref_name
Some checks failed
Check / check (push) Failing after 0s
2025-05-17 01:18:40 -04:00
5 changed files with 38 additions and 38 deletions

View File

@ -30,40 +30,40 @@ jobs:
- name: Check - name: Check
run: nix flake check run: nix flake check
release: # release:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
needs: check # needs: check
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v4 # uses: actions/checkout@v4
- name: Install Nix # - name: Install Nix
uses: cachix/install-nix-action@v31 # uses: cachix/install-nix-action@v31
with: # with:
nix_path: nixpkgs=channel:nixos-unstable # nix_path: nixpkgs=channel:nixos-unstable
- name: Use Cachix # - name: Use Cachix
uses: cachix/cachix-action@v16 # uses: cachix/cachix-action@v16
with: # with:
name: trevstack # name: trevstack
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
.#trevstack-linux-arm # .#trevstack-linux-arm
.#trevstack-windows-amd64 # .#trevstack-windows-amd64
.#trevstack-darwin-amd64 # .#trevstack-darwin-amd64
.#trevstack-darwin-arm64 # .#trevstack-darwin-arm64
- name: Release # - name: Release
uses: softprops/action-gh-release@v2 # uses: softprops/action-gh-release@v2
with: # with:
generate_release_notes: true # generate_release_notes: true
files: |- # files: |-
result*/bin/* # result*/bin/*
# https://docs.docker.com/build/ci/github-actions/manage-tags-labels/ # https://docs.docker.com/build/ci/github-actions/manage-tags-labels/
package: package:
@ -86,7 +86,7 @@ jobs:
- name: Set env - name: Set env
run: | run: |
TAG=${{ github.event.release.tag_name }} TAG=${{ github.ref_name }}
VERSION=${TAG#v} VERSION=${TAG#v}
NAME="trevstack:${VERSION}" NAME="trevstack:${VERSION}"

View File

@ -1,12 +1,12 @@
{ {
"name": "trevstack", "name": "trevstack",
"version": "0.0.36", "version": "0.0.37",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "trevstack", "name": "trevstack",
"version": "0.0.36", "version": "0.0.37",
"devDependencies": { "devDependencies": {
"@bufbuild/protovalidate": "^0.1.1", "@bufbuild/protovalidate": "^0.1.1",
"@connectrpc/connect": "^2.0.2", "@connectrpc/connect": "^2.0.2",

View File

@ -1,7 +1,7 @@
{ {
"name": "trevstack", "name": "trevstack",
"private": true, "private": true,
"version": "0.0.36", "version": "0.0.37",
"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.36"; version = "0.0.37";
build-systems = [ build-systems = [
"x86_64-linux" "x86_64-linux"
@ -130,7 +130,7 @@
pname = "check-client"; pname = "check-client";
inherit version; inherit version;
src = ./client; src = ./client;
npmDepsHash = "sha256-HC9h9sSh/1TkeTXN5yDkxz9OvwKdhRcNOEIzxvTVfrA="; npmDepsHash = "sha256-qM6f9eEQqIW44SNjS1wlvdcEXMvJZ7k0/ea43dnUj7o=";
dontNpmInstall = true; dontNpmInstall = true;
buildPhase = '' buildPhase = ''
@ -193,7 +193,7 @@
client = pkgs.buildNpmPackage { client = pkgs.buildNpmPackage {
inherit pname version; inherit pname version;
src = ./client; src = ./client;
npmDepsHash = "sha256-HC9h9sSh/1TkeTXN5yDkxz9OvwKdhRcNOEIzxvTVfrA="; npmDepsHash = "sha256-qM6f9eEQqIW44SNjS1wlvdcEXMvJZ7k0/ea43dnUj7o=";
installPhase = '' installPhase = ''
cp -r build "$out" cp -r build "$out"

View File

@ -3,7 +3,7 @@ servers:
- url: /grpc - url: /grpc
info: info:
title: Trevstack API title: Trevstack API
version: 0.0.36 version: 0.0.37
description: API for Trevstack description: API for Trevstack
contact: contact:
name: Trev name: Trev