mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-21 20:50:07 +00:00
18 lines
415 B
Bash
Executable File
18 lines
415 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This shell script uploads already existing pdf2htmlEX AppImage and Container
|
|
# Images
|
|
|
|
################
|
|
# do the uploads
|
|
|
|
set -ev
|
|
|
|
./buildScripts/reportEnvs || { echo 'reportEnvs FAILED' ; exit 1 ; }
|
|
|
|
./buildScripts/uploadGitHubRelease || { echo 'uploadGitHubRelease FAILED' ; exit 1 ; }
|
|
|
|
./buildScripts/uploadContainerImage || { echo 'uploadContainerImage FAILED' ; exit 1 ; }
|
|
|
|
|