mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
14 lines
311 B
Plaintext
14 lines
311 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# This bash script uploads already existing pdf2htmlEX AppImage and Docker
|
||
|
# Images
|
||
|
|
||
|
################
|
||
|
# do the uploads
|
||
|
|
||
|
./buildScripts/uploadGitHubRelease || { echo 'uploadGitHubRelease FAILED' ; exit 1 ; }
|
||
|
|
||
|
./buildScripts/uploadDockerImage || { echo 'uploadDockerImage FAILED' ; exit 1 ; }
|
||
|
|
||
|
|