File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed
buildscripts/ci/backend/docker Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 8686 run : |
8787 bash ./buildscripts/ci/backend/package.sh
8888
89- - name : Build Docker
89+ - name : Send package to S3
90+ if : env.DO_PUBLISH == 'true'
91+ run : |
92+ bash ./buildscripts/ci/backend/publish_to_s3.sh \
93+ --s3_key ${{ secrets.S3_KEY_CONVERTER }} \
94+ --s3_secret ${{ secrets.S3_SECRET_CONVERTER }} \
95+ --stage ${{ inputs.build_mode }} \
96+ --mu_version ${{ env.VERSION }} \
97+ --mu_version_major_minor ${{ env.VERSION_MAJOR_MINOR }}
98+
99+ - name : Build Docker (used package from S3)
90100 if : env.DO_PUBLISH == 'true'
91101 run : |
92102 bash ./buildscripts/ci/backend/build_docker.sh
@@ -99,16 +109,7 @@ jobs:
99109 - name : Deploy to musescore.com
100110 if : env.DO_PUBLISH == 'true'
101111 run : |
102- bash ./buildscripts/ci/backend/publish_to_s3.sh \
103- --s3_key ${{ secrets.S3_KEY_CONVERTER }} \
104- --s3_secret ${{ secrets.S3_SECRET_CONVERTER }} \
105- --stage ${{ inputs.build_mode }} \
106- --mu_version ${{ env.VERSION }} \
107- --mu_version_major_minor ${{ env.VERSION_MAJOR_MINOR }}
108-
109-
110112 pip install jenkinsapi
111-
112113 python3 ./buildscripts/ci/backend/deploy.py --mu_version ${{ env.VERSION }} --api_token ${{ secrets.JENKINS_API_TOKEN }}
113114
114115 - name : Upload artifacts on GitHub
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ mkdir -p $MU_DIR
88
99echo " === Install MuseScore ${MU_VERSION} ==="
1010MU_DISTRO=MuseScore-${MU_VERSION}
11- wget -q - -show-progress -O $MU_DIR /$MU_DISTRO .7z " $S3_URL /$MU_DISTRO .7z"
11+ wget --show-progress -O $MU_DIR /$MU_DISTRO .7z " $S3_URL /$MU_DISTRO .7z"
12127z x -y $MU_DIR /$MU_DISTRO .7z -o" $MU_DIR /"
1313$MU_DIR /convertor -v
1414
You can’t perform that action at this time.
0 commit comments