We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83409a2 commit 8a4b5d0Copy full SHA for 8a4b5d0
1 file changed
.github/workflows/server-build.yml
@@ -33,10 +33,10 @@ jobs:
33
- name: Building
34
run: |
35
if [[ "${{ github.event.inputs.buildType }}" == "Testing" ]]; then
36
- sh deploy/installer/build.sh --VERSION=v${{ github.event.inputs.buildVersion }} --PUBLISH_TO_GIT=false
+ bash deploy/installer/build.sh --VERSION=v${{ github.event.inputs.buildVersion }} --PUBLISH_TO_GIT=false
37
fi
38
if [[ "${{ github.event.inputs.buildType }}" == "Release" ]]; then
39
- sh deploy/installer/build.sh --VERSION=v${{ github.event.inputs.buildVersion }} --PUBLISH_TO_GIT=true
+ bash deploy/installer/build.sh --VERSION=v${{ github.event.inputs.buildVersion }} --PUBLISH_TO_GIT=true
40
41
env:
42
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
0 commit comments