Skip to content

Commit

Permalink
Release v1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
beastawakens committed Oct 7, 2024
1 parent 0f45eed commit 4b7f72f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:22.04

LABEL version="v1.0.14"
LABEL version="v1.0.15"
LABEL repository="https://github.com/beastawakens/action-convox-multi-slim"
LABEL homepage="https://convox.com/"
LABEL maintainer="Beast Awakens <me@beastawakens.com>"
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ outputs:
description: Release ID of the created build
runs:
using: 'docker'
image: 'docker://beastawakens/action-convox-multi-slim:v1.0.14'
image: 'docker://beastawakens/action-convox-multi-slim:v1.0.15'
4 changes: 2 additions & 2 deletions entrypoint-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export CONVOX_RACK=$INPUT_RACK
if [ -n "$RELEASE" ]
then
echo "Running command on $INPUT_SERVICE - $INPUT_APP for the release $RELEASE"
convox run $INPUT_SERVICE "$INPUT_COMMAND" --release $RELEASE --app $INPUT_APP --rack $INPUT_RACK
convox run $INPUT_SERVICE "$INPUT_COMMAND" --release $RELEASE --app $INPUT_APP --rack $INPUT_RACK | tee /dev/stdout
else
echo "Running command on $INPUT_SERVICE - $INPUT_APP for the latest release"
convox run $INPUT_SERVICE "$INPUT_COMMAND" --app $INPUT_APP --rack $INPUT_RACK
convox run $INPUT_SERVICE "$INPUT_COMMAND" --app $INPUT_APP --rack $INPUT_RACK | tee /dev/stdout
fi

0 comments on commit 4b7f72f

Please sign in to comment.