- Fix Docker tagging

This commit is contained in:
Nate Harris
2024-10-24 10:52:38 -06:00
parent df11fe055b
commit 8e96249dd3

View File

@ -29,7 +29,7 @@ jobs:
run: |
echo "app_name=plex_prerolls" >> "$GITHUB_OUTPUT"
echo "version=${{ github.event.inputs.version || github.event.release.tag_name }}" >> "$GITHUB_OUTPUT"
echo "major_version=$(echo ${{ steps.vars.outputs.version || github.event.release.tag_name }} | cut -d '.' -f 1)" >> "$GITHUB_OUTPUT"
echo "major_version=$(echo ${{ github.event.inputs.version || github.event.release.tag_name }} | cut -d '.' -f 1)" >> "$GITHUB_OUTPUT"
echo "today=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
echo "year=$(date +'%Y')" >> "$GITHUB_OUTPUT"