Skip to content

Commit

Permalink
Adjust paths
Browse files Browse the repository at this point in the history
  • Loading branch information
acoburn committed Oct 4, 2023
1 parent ef34a53 commit 64ddf4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions buildtools/src/main/resources/docker/publishToDockerHub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ BRANCH=$(git branch 2>/dev/null | sed -n -e 's/^\* \(.*\)/\1/p')
##################################
IMAGE=trellisldp/trellis-triplestore

./mvnw package -pl platform/quarkus -am
./mvnw package -pl apps/quarkus -am

TAG=latest
# Use the develop tag for snapshots
if [[ $VERSION == *SNAPSHOT* ]]; then
TAG=develop
fi

cd platform/quarkus
cd apps/quarkus
# Don't use latest/develop tags for maintenance branches
if [[ $BRANCH == *.x ]]; then
docker build -f src/main/docker/Dockerfile.jvm -t "$IMAGE:$VERSION" .
Expand Down
4 changes: 2 additions & 2 deletions buildtools/src/main/resources/docker/publishToGitHub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ VERSION=$(./mvnw -q help:evaluate -Dexpression=project.version -DforceStdout)
# Publish releases only
if [[ $VERSION != *SNAPSHOT* ]]; then

./mvnw package -pl platform/quarkus -am
./mvnw package -pl apps/quarkus -am

cd platform/quarkus
cd apps/quarkus
##################################
# Quarkus-based triplestore image
##################################
Expand Down

0 comments on commit 64ddf4e

Please sign in to comment.