Browse Source

fix: tag name correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/9648/head
Pranav C 1 month ago
parent
commit
9ab484d610
  1. 4
      .github/workflows/release-timely-docker.yml

4
.github/workflows/release-timely-docker.yml

@ -63,9 +63,9 @@ jobs:
DOCKER_BUILD_TAG=${{ github.event.inputs.currentVersion || inputs.currentVersion }}-${{ github.event.inputs.tag || inputs.tag }} DOCKER_BUILD_TAG=${{ github.event.inputs.currentVersion || inputs.currentVersion }}-${{ github.event.inputs.tag || inputs.tag }}
fi fi
if [[ ${{ inputs.isDaily || 'N' }} == 'Y' ]]; then if [[ ${{ inputs.isDaily || 'N' }} == 'Y' ]]; then
DOCKER_REPOSITORY=${DOCKER_REPOSITORY}-daily DOCKER_REPOSITORY=nocodb-daily
else else
DOCKER_REPOSITORY=${DOCKER_REPOSITORY}-timely DOCKER_REPOSITORY=nocodb-timely
fi fi
fi fi
echo "DOCKER_REPOSITORY=${DOCKER_REPOSITORY}" >> $GITHUB_OUTPUT echo "DOCKER_REPOSITORY=${DOCKER_REPOSITORY}" >> $GITHUB_OUTPUT

Loading…
Cancel
Save