2020-06-20 09:11:30 +00:00
|
|
|
#!/bin/sh
|
2019-11-29 09:43:07 +00:00
|
|
|
|
2020-07-07 18:01:43 +00:00
|
|
|
# This shell script uploads already existing pdf2htmlEX AppImage and Container
|
2019-11-29 09:43:07 +00:00
|
|
|
# Images
|
|
|
|
|
|
|
|
################
|
|
|
|
# do the uploads
|
|
|
|
|
2020-06-02 11:58:27 +00:00
|
|
|
set -ev
|
|
|
|
|
2020-07-07 18:01:43 +00:00
|
|
|
./buildScripts/reportEnvs || { echo 'reportEnvs FAILED' ; exit 1 ; }
|
2019-11-29 09:57:32 +00:00
|
|
|
|
2020-07-07 18:01:43 +00:00
|
|
|
./buildScripts/uploadGitHubRelease || { echo 'uploadGitHubRelease FAILED' ; exit 1 ; }
|
2019-11-29 09:43:07 +00:00
|
|
|
|
2020-07-07 18:01:43 +00:00
|
|
|
./buildScripts/uploadContainerImage || { echo 'uploadContainerImage FAILED' ; exit 1 ; }
|
2019-11-29 09:43:07 +00:00
|
|
|
|
|
|
|
|