@ossy/deployment-tools 0.0.83 → 0.0.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "description": "Collection of scripts and tools to aid deployment of containers and static files to Amazon Web Services through GitHub Actions",
5
5
  "source": "./src/index.js",
6
6
  "main": "./src/index.js",
@@ -74,7 +74,7 @@ class DockerService {
74
74
  return DockerService.resolveCredentials(deploymentRequest)
75
75
  .then(() => DockerService.stopContainer(deploymentRequest))
76
76
  .then(() => DockerService.removeImage(deploymentRequest))
77
- .then(() => DockerService.pullImage(deploymentTemplate))
77
+ .then(() => DockerService.pullImage(deploymentRequest))
78
78
  .then(() => DockerService.startContainer(platformConfig, deploymentRequest))
79
79
  }
80
80
 
package/src/ossy.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "workspaceId": "-LWn40rqowQXuNhm4BTvz",
3
+ "resourceTemplates": [
4
+ {
5
+ "name": "Consulting profile",
6
+ "fields": [
7
+ {
8
+ "name": "Name",
9
+ "type": "string"
10
+ }
11
+ ]
12
+ }
13
+ ]
14
+ }