diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 70f06a4..e37616c 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -3,8 +3,6 @@ name: Build and Push Docker Image on: push: branches: ["main"] - pull_request: - branches: ["main"] jobs: deploy-docker: diff --git a/.gitignore b/.gitignore index 7065a67..87dd1bf 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ data/ downloads/ +bin # Logs diff --git a/bun.lockb b/bun.lockb index 52d2277..73ddcff 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/libro b/libro deleted file mode 100755 index 976fe09..0000000 Binary files a/libro and /dev/null differ diff --git a/package.json b/package.json index 22f414c..f194dd1 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "scripts": { "start": "bun run cli.ts", "service": "bun run service.ts", - "build:cli": "bun build ./cli.ts --compile --minify --sourcemap --outfile libro", + "build:cli": "bun build ./cli.ts --compile --minify --sourcemap --outfile bin/libro", "build:docker": "docker build . -t jedwards1230/libro:latest", "push:cli": "npm publish", "push:docker": "docker push jedwards1230/libro:latest" @@ -30,10 +30,10 @@ "typescript": "^5.4.5" }, "dependencies": { - "@inquirer/confirm": "^3.1.5", - "@inquirer/input": "^2.1.5", - "@inquirer/password": "^2.1.5", - "@inquirer/select": "^2.3.1", + "@inquirer/confirm": "^3.1.6", + "@inquirer/input": "^2.1.6", + "@inquirer/password": "^2.1.6", + "@inquirer/select": "^2.3.2", "jszip": "^3.10.1", "winston": "^3.13.0", "yargs": "^17.7.2"