pdf2htmlEX/buildScripts/uploadImages

18 lines
415 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
2019-11-29 09:43:07 +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
./buildScripts/reportEnvs || { echo 'reportEnvs FAILED' ; exit 1 ; }
./buildScripts/uploadGitHubRelease || { echo 'uploadGitHubRelease FAILED' ; exit 1 ; }
2019-11-29 09:43:07 +00:00
./buildScripts/uploadContainerImage || { echo 'uploadContainerImage FAILED' ; exit 1 ; }
2019-11-29 09:43:07 +00:00