File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 4545 run : python -c "import sys; print(sys.version)"
4646
4747 - name : Download RavenDB Server
48- run : wget -q -O RavenDB.tar.bz2 "https://hibernatingrhinos.com/downloads/RavenDB%20for%20Linux%20x64/latest?buildType=${{ env.RAVENDB_BUILD_TYPE }}&version=${{ matrix.serverVersion }}"
48+ run : |
49+ if [[ -n "${{ inputs.ravendb_version }}" ]]; then
50+ wget -O RavenDB.tar.bz2 "https://daily-builds.s3.amazonaws.com/RavenDB-${{ inputs.ravendb_version }}-linux-x64.tar.bz2"
51+ else
52+ wget -O RavenDB.tar.bz2 "https://hibernatingrhinos.com/downloads/RavenDB%20for%20Linux%20x64/latest?buildType=${{ env.RAVENDB_BUILD_TYPE }}&version=${{ matrix.serverVersion }}"
53+ fi
4954
5055 - run : mkdir certs
5156 - run : openssl genrsa -out certs/ca.key 2048
You can’t perform that action at this time.
0 commit comments