Skip to content

Commit

Permalink
trying to fix upload_url missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Pietro Passarelli committed Jan 3, 2020
1 parent 21a35c6 commit 3ebae18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ script:
- find . | grep x86_64.AppImage;
- find . | grep .exe;
- npm run adobe-panel-package-sign-build
# package all files and folders needed inside adobe-panel-build folder
# - npm run adobe-panel-build
# # creating a certificate
# - $ZXPSignCmd_PATH -selfSignedCert $COUNTRY_CODE $STATE_OR_PROVINCE $ORGANIZATION "$COMMON_NAME" $CERTIFICATE_PASSWORD $CERTIFICATE_OUTPUT_PATH
# # pack and sign the extension
# - $ZXPSignCmd_PATH -sign $INPUT_DIRECTORY $OUTPUT_ZXP $CERTIFICATE_OUTPUT_PATH $CERTIFICATE_PASSWORD -tsa $TIMESTAMPS_URL
- node travis_to_github_upload.js

branches:
Expand Down
1 change: 1 addition & 0 deletions travis_to_github_upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ const ghReleaseAssets = require("gh-release-assets");
async function main() {
const releases = await getListOfReleases(TRAVIS_REPO_SLUG);
const lastRelease = releases[0];
console.log('lastRelease', JSON.stringify(lastRelease,null,2))
const uploadUrl = lastRelease.upload_url;
console.log('uploadUrl', uploadUrl)

Expand Down

0 comments on commit 3ebae18

Please sign in to comment.