diff --git a/.github/workflows/deploy-RELEASE-slim.yml b/.github/workflows/deploy-RELEASE-slim.yml index a11614be..2be00ea5 100644 --- a/.github/workflows/deploy-RELEASE-slim.yml +++ b/.github/workflows/deploy-RELEASE-slim.yml @@ -107,6 +107,15 @@ jobs: password: ${{ secrets.GCR_TOKEN }} registry: ghcr.io + ########################### + # Get the current release # + ########################### + - name: Get current Release number + run: | + echo "RELEASE_VERSION=$(echo "${{ github.event.issue.title }}" \ + | grep -E -o "v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+")" \ + >> ${GITHUB_ENV} + ########################################### # Build and Push containers to registries # ###########################################