Skip to content

Commit b102ccf

Browse files
committed
2 parents 57445ef + 147bde0 commit b102ccf

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@ jobs:
2424
username: ${{ secrets.SSH_USERNAME }}
2525
password: ${{ secrets.SSH_PASSWORD }}
2626
envs: GITHUB_SERVER_URL,GITHUB_REPOSITORY,GITHUB_REF_NAME
27-
# TODO: remove @beta after PR is merged and nginx-proxy-cli has been released
28-
script: npx nginx-proxy-cli@beta deploy $GITHUB_SERVER_URL/$GITHUB_REPOSITORY --dir=~/nginx-proxy/applications --branch=$GITHUB_REF_NAME --folder=nginxproxy.lars-rickert.de --root=documentation
27+
script: npx nginx-proxy-cli deploy $GITHUB_SERVER_URL/$GITHUB_REPOSITORY --dir=~/nginx-proxy/applications --branch=$GITHUB_REF_NAME --folder=nginxproxy.lars-rickert.de --root=documentation

cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [nginx-proxy-cli-v1.0.1](https://github.com/larsrickert/nginx-proxy/compare/nginx-proxy-cli-v1.0.0...nginx-proxy-cli-v1.0.1) (2022-04-14)
2+
3+
4+
### Bug Fixes
5+
6+
* existance check not working properly ([5b6a111](https://github.com/larsrickert/nginx-proxy/commit/5b6a1114d1706df644bc3b6d0d1b3bedf9efaf9a))
7+
18
# nginx-proxy-cli-v1.0.0 (2022-04-14)
29

310

cli/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nginx-proxy-cli",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "CLI for deploying docker-compose applications using the nginx-proxy (https://nginxproxy.lars-rickert.de).",
55
"main": "bin/index.js",
66
"author": "larsrickert",

cli/src/utils/shell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import shell from 'shelljs';
22

3-
export async function exists(path: string): Promise<boolean> {
3+
export function exists(path: string): boolean {
44
return shell.exec(`[ ! -d ${path} ] && exit 1`).code === 0;
55
}

0 commit comments

Comments
 (0)