Skip to content

Commit

Permalink
Fixed some path and version issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Oct 11, 2024
1 parent 39e464a commit dc599dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/make-release-distro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ if [[ $# != 2 ]]; then
fi

RELEASE_VERSION=$1
DISTRO_SOURCE=$2
DISTRO_SOURCE=$(echo $(cd $(dirname "$2"); pwd)/$(basename "$2"))
ARTIFACT=deephaven-benchmark-${RELEASE_VERSION}
DISTRO_DEST=target/distro
WORKING_DIR=$(pwd)
DISTRO_DEST=${WORKING_DIR}/target/distro

# Generate dependencies directory
mkdir -p ${DISTRO_DEST}/libs/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Build and Install Release Artifacts Locally
working-directory: ${{env.RELEASE_DIR}}
run: |
sed -i "s!<version>1.0-SNAPSHOT</version>!<version>${VERSION}</version>!" pom.xml
sed -i "s;<version>1.0-SNAPSHOT</version>;<version>${VERSION}</version>;" pom.xml
mvn -B install --file pom.xml
docker compose down
Expand Down

0 comments on commit dc599dd

Please sign in to comment.