Data Request API helper #10
2 changed files with 3 additions and 2 deletions
|
|
@ -72,6 +72,7 @@ jobs:
|
|||
env:
|
||||
TAG: "v${{steps.version.outputs.version}}"
|
||||
FILE: "release.zip"
|
||||
CDN_URL: "${{vars.CDN_URL}}"
|
||||
S3_BUCKET: "${{vars.S3_BUCKET}}"
|
||||
S3_REGION: "${{vars.S3_REGION}}"
|
||||
S3_KEY: "${{secrets.S3_KEY}}"
|
||||
|
|
@ -83,6 +84,7 @@ jobs:
|
|||
env:
|
||||
TAG: "v${{steps.version.outputs.version}}"
|
||||
FILE: "system.json"
|
||||
CDN_URL: "${{vars.CDN_URL}}"
|
||||
S3_BUCKET: "${{vars.S3_BUCKET}}"
|
||||
S3_REGION: "${{vars.S3_REGION}}"
|
||||
S3_KEY: "${{secrets.S3_KEY}}"
|
||||
|
|
|
|||
|
|
@ -42,8 +42,7 @@ async function main() {
|
|||
await addReleaseAsset(release.data.id, `release.zip`);
|
||||
await addReleaseAsset(release.data.id, `system.json`);
|
||||
} catch (e) {
|
||||
console.error(`Failed to add assets to the release`);
|
||||
console.error(e);
|
||||
console.error(`Failed to add assets to the release with message:`, e.data.message);
|
||||
process.exit(1);
|
||||
|
Oliver marked this conversation as resolved
Outdated
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue
Remove console error now