From 7873f802c7a3fca2d3d6d5cd433cd12d2a7649f6 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Mon, 18 Jul 2022 22:31:13 -0500 Subject: [PATCH] Update cd build/publish to use $DOCKER_REGISTRY --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index a86f4fb..ad80209 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "@extollo/extollo", + "name": "@crystalmath/api", "version": "0.1.0", - "description": "The framework lifts up your code.", + "description": "", "main": "lib/index.js", "types": "lib/index.d.ts", "directories": { @@ -22,8 +22,8 @@ "build": "excc -c package.json -t tsconfig.json", "app": "pnpm run build && node lib/index.js", "cli": "pnpm run build && node lib/cli.js", - "cd:build": "docker image build . -t glmdev/mathy-api", - "cd:publish": "docker push glmdev/mathy-api" + "cd:build": "docker image build . -t ${DOCKER_REGISTRY}/glmdev/mathy-api", + "cd:publish": "docker push ${DOCKER_REGISTRY}/glmdev/mathy-api" }, "files": [ "lib/**/*" @@ -32,7 +32,7 @@ "postversion": "git push && git push --tags", "repository": { "type": "git", - "url": "https://code.garrettmills.dev/extollo/extollo" + "url": "https://code.garrettmills.dev/crystalmath/api" }, "author": "garrettmills ", "license": "MIT",