Skip to content

Commit 1c3862e

Browse files
committed
chore(repo): minor fixes
1 parent 830804f commit 1c3862e

3 files changed

Lines changed: 24 additions & 16 deletions

File tree

.github/workflows/lazyreview_wf_release.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,6 @@ on:
2424
required: true
2525

2626
jobs:
27-
build_artifacts:
28-
uses: ./.github/workflows/wf_build_artifacts.yaml
29-
with:
30-
NAME: lazyreview
31-
PATH: .
32-
GIT_REF: ${{ inputs.GIT_REF }}
33-
VERSION: ${{ inputs.VERSION }}
34-
DOCKER: true
35-
secrets:
36-
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }}
37-
NIX_CACHE_PUB_KEY: ${{ secrets.NIX_CACHE_PUB_KEY }}
38-
NIX_CACHE_PRIV_KEY: ${{ secrets.NIX_CACHE_PRIV_KEY }}
39-
4027
build-multiplatform:
4128
permissions:
4229
id-token: write

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Nhost
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build/makefiles/general.makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include $(ROOT_DIR)/build/makefiles/release.makefile
77
ifdef VER
88
VERSION=$(shell echo $(VER) | sed -e 's/^v//g' -e 's/\//_/g')
99
else
10-
VERSION=$(shell grep -oP 'version\s*=\s*"\K[^"]+' project.nix | head -n 1)
10+
VERSION=$(shell grep -oP 'version\s*=\s*"\K[^"]+' flake.nix | head -n 1)
1111
endif
1212

1313
ifeq ($(shell uname -m),x86_64)
@@ -49,8 +49,8 @@ print-vars: ## print all variables
4949

5050
.PHONY: get-version
5151
get-version: ## Return version
52-
@sed -i '/^\s*version = "0.0.0-dev";/s//version = "${VERSION}";/' project.nix
53-
@sed -i '/^\s*created = "1970-.*";/s//created = "${shell date --utc '+%Y-%m-%dT%H:%M:%SZ'}";/' project.nix
52+
@sed -i '/^\s*version = "0.0.0-dev";/s//version = "${VERSION}";/' flake.nix
53+
@sed -i '/^\s*created = "1970-.*";/s//created = "${shell date --utc '+%Y-%m-%dT%H:%M:%SZ'}";/' flake.nix
5454
@echo $(VERSION)
5555

5656

0 commit comments

Comments
 (0)