Skip to content

Commit

Permalink
Merge pull request #100 from ml054/v5.4
Browse files Browse the repository at this point in the history
ability to use any RavenDB server version when dispatching github action
  • Loading branch information
ml054 authored Jul 24, 2024
2 parents f5f3cf8 + 87c8f5b commit 62d411a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/RavenClient.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ on:
branches: [ v5.4 ]
pull_request:
branches: [ v5.4 ]
workflow_dispatch:
inputs:
ravendb_version:
description: 'RavenDB Version'
required: true
type: string

jobs:
build:
Expand Down Expand Up @@ -35,7 +41,12 @@ jobs:
java-version: ${{ matrix.java-version }}

- name: Download RavenDB Server
run: wget -O RavenDB.tar.bz2 "https://hibernatingrhinos.com/downloads/RavenDB%20for%20Linux%20x64/latest?buildType=${{ env.RAVENDB_BUILD_TYPE }}&version=${{ matrix.serverVersion }}"
run: |
if [[ -n "${{ inputs.ravendb_version }}" ]]; then
wget -O RavenDB.tar.bz2 "https://daily-builds.s3.amazonaws.com/RavenDB-${{ inputs.ravendb_version }}-linux-x64.tar.bz2"
else
wget -O RavenDB.tar.bz2 "https://hibernatingrhinos.com/downloads/RavenDB%20for%20Linux%20x64/latest?buildType=${{ env.RAVENDB_BUILD_TYPE }}&version=${{ matrix.serverVersion }}"
fi
- run: mkdir certs
- run: openssl genrsa -traditional -out certs/ca.key 2048
Expand Down

0 comments on commit 62d411a

Please sign in to comment.