Skip to content

Commit

Permalink
Merge pull request #1312 from stavros-k/docker-tags
Browse files Browse the repository at this point in the history
add additional docker tags when releasing
  • Loading branch information
michaelherger authored Feb 8, 2025
2 parents ab195f6 + 677c372 commit 829f125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ runs:
if [ "${{ inputs.build-type }}" = "release" ]; then
echo "LMS_TAG=--tag=rc" >> $GITHUB_OUTPUT
elif [ "${{ steps.getversion.outputs.LMS_VERSION }}" = "9.1" ]; then
echo "LMS_TAG=--tag=dev" >> $GITHUB_OUTPUT
echo "LMS_TAG=--tag=dev,${{ steps.getversion.outputs.LMS_FULL_VERSION }}-dev" >> $GITHUB_OUTPUT
elif [ "${{ steps.getversion.outputs.LMS_VERSION }}" = "9.0" ]; then
echo "LMS_TAG=--tag=stable" >> $GITHUB_OUTPUT
echo "LMS_TAG=--tag=stable,${{ steps.getversion.outputs.LMS_FULL_VERSION }}-stable" >> $GITHUB_OUTPUT
else
echo "UNKNOWN DOCKER TARGET TAG"
exit 1
Expand Down

0 comments on commit 829f125

Please sign in to comment.