Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

justfile: use jj

+3 -5
+3 -5
justfile
··· 73 73 74 74 release: set-version 75 75 git add VERSION openapi.json 76 - git commit -m "release: version $(cat VERSION)" 76 + jj commit -m "release: version $(cat VERSION)" 77 77 78 78 release-push: 79 79 git tag -a -m v$(cat VERSION) v$(cat VERSION) ··· 102 102 mix hex.outdated 103 103 just mix-clean 104 104 just mix-nix-lock 105 - git add mix.exs mix.lock nix/packages/deps.nix 106 - git commit -m 'server(chore): update elixir deps' -- mix.exs mix.lock nix/packages/deps.nix 105 + jj commit -m 'server(chore): update elixir deps' mix.exs mix.lock nix/packages/deps.nix 107 106 108 107 update-go: 109 108 go get -u ./... 110 109 go mod edit -go=$(go version | awk '{print $3}' | sed 's/go//') 111 110 go mod tidy 112 111 just update-go-hash 113 - git add go.mod go.sum nix/packages/cli.nix 114 - git commit -m 'server(chore): update go deps' -- go.mod go.sum nix/packages/cli.nix 112 + jj commit -m 'server(chore): update go deps' go.mod go.sum nix/packages/cli.nix 115 113 116 114 update-go-hash: 117 115 #!/usr/bin/env bash