permaweb-deploy 1.1.7 → 1.1.8

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/dist/index.js CHANGED
@@ -100,11 +100,13 @@ _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
100
100
  transactionId: manifestId,
101
101
  ttlSeconds: 3600
102
102
  }, {
103
- name: 'GIT-HASH',
104
- value: process.env.GITHUB_SHA
105
- }, {
106
- name: 'App-Name',
107
- value: 'Permaweb-Deploy'
103
+ tags: [{
104
+ name: 'GIT-HASH',
105
+ value: process.env.GITHUB_SHA
106
+ }, {
107
+ name: 'App-Name',
108
+ value: 'Permaweb-Deploy'
109
+ }]
108
110
  });
109
111
  case 24:
110
112
  console.log("Deployed TxId [".concat(manifestId, "] to ANT [").concat(ANT_PROCESS, "] using undername [").concat(argv.undername, "]"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "permaweb-deploy",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Permaweb app deployment package",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -10,8 +10,8 @@
10
10
  "permaweb-deploy": "./dist/index.js"
11
11
  },
12
12
  "dependencies": {
13
- "@ar.io/sdk": "^1.2.2",
14
- "@ardrive/turbo-sdk": "^1.9.0",
13
+ "@ar.io/sdk": "^2.2.5",
14
+ "@ardrive/turbo-sdk": "^1.17.0",
15
15
  "mime-types": "^2.1.35",
16
16
  "yargs": "17.7.2"
17
17
  },
package/src/index.js CHANGED
@@ -79,14 +79,17 @@ export function getTagValue(list, name) {
79
79
  undername: argv.undername,
80
80
  transactionId: manifestId,
81
81
  ttlSeconds: 3600,
82
- },
83
- {
84
- name: 'GIT-HASH',
85
- value: process.env.GITHUB_SHA,
86
- },
87
- {
88
- name: 'App-Name',
89
- value: 'Permaweb-Deploy',
82
+ },{
83
+ tags: [
84
+ {
85
+ name: 'GIT-HASH',
86
+ value: process.env.GITHUB_SHA,
87
+ },
88
+ {
89
+ name: 'App-Name',
90
+ value: 'Permaweb-Deploy',
91
+ },
92
+ ]
90
93
  }
91
94
  );
92
95