ci: package.json scripts and release

This commit is contained in:
Giles Bradshaw 2020-08-11 10:47:20 +01:00
parent 9767b4a346
commit 2134de9882
5 changed files with 1609 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.certificates
node_modules

1
build.sh Normal file
View File

@ -0,0 +1 @@
docker build guacamole-postgres -t ${LOCAL_DOCKER_REGISTRY}guacamole-postgresql

4
deploy.sh Normal file
View File

@ -0,0 +1,4 @@
docker stack rm remote
echo 'sleeping...zzz'
sleep 60
docker stack deploy -c docker-compose.yml remote

21
package.json Normal file
View File

@ -0,0 +1,21 @@
{
"private": true,
"name": "guacamole",
"version": "0.0.1",
"description": "remote access",
"scripts": {
"build": "sh build.sh",
"deploy": "sh deploy.sh",
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://sigyl.com/git/stack/guacamole"
},
"author": "Giles Bradshaw",
"license": "ISC",
"devDependencies": {
"standard-version": "git+https://github.com/gilesbradshaw/standard-version.git"
}
}

1581
yarn.lock Normal file

File diff suppressed because it is too large Load Diff