Skip to content

Commit

Permalink
Fix(version): Remove alpha suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
arimet committed Nov 6, 2023
1 parent 3b6d674 commit 2407349
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ build-app:
docker compose -f docker-compose.dev.yml run --no-deps --rm node npm run build

build: ## Build the docker image localy
docker build -t inistcnrs/lodex:14.0.18-alpha --build-arg http_proxy --build-arg https_proxy .
docker build -t inistcnrs/lodex:14.0.18 --build-arg http_proxy --build-arg https_proxy .
publish: build ## publish version to docker hub
docker push inistcnrs/lodex:14.0.18-alpha
docker push inistcnrs/lodex:14.0.18

analyze-code: ## Generate statistics about the bundle. Usage: make analyze-code.
docker compose -f docker-compose.dev.yml run --no-deps --rm node npm run analyze
Expand Down Expand Up @@ -116,7 +116,7 @@ ifeq "$(DISABLE_E2E_TESTS)" "true"
else
$(MAKE) test-e2e-start-dockers
npx cypress install
./bin/wait-for -t 30 localhost:3000 -- npx cypress run --browser chrome || (\
./bin/wait-for -t 30 localhost:3000 -- npx cypress open --browser chrome || (\
$(MAKE) test-e2e-stop-dockers && \
exit 1)
endif
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"node": ">= 16"
},
"name": "lodex",
"version": "14.0.18-alpha",
"version": "14.0.18",
"description": "",
"main": "src/api/index.js",
"browser": {
Expand Down

0 comments on commit 2407349

Please sign in to comment.