From 30812b0716e4b4db1ef465c48cca0f56fa6d33f3 Mon Sep 17 00:00:00 2001 From: Lukas Gravley Date: Thu, 3 Jun 2021 09:45:15 -0500 Subject: [PATCH] Update deploy-RELEASE-slim.yml (#1613) * Update deploy-RELEASE-slim.yml * spacing --- .github/workflows/deploy-RELEASE-slim.yml | 9 +++++++++ 1 file changed, 9 insertions(+) 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 # ###########################################