Bläddra i källkod

Fix branch name within env create workflow (#3134)

Narekmat 2 år sedan
förälder
incheckning
7ee79c4b00
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      .github/workflows/separate_env_public_create.yml

+ 1 - 1
.github/workflows/separate_env_public_create.yml

@@ -15,7 +15,7 @@ jobs:
       - name: get branch name
         id: extract_branch
         run: |
-          tag='${{ github.event.inputs.ENV_NAME }}-$(date '+%F-%H-%M-%S')'
+          tag="${{ github.event.inputs.ENV_NAME }}-$(date '+%F-%H-%M-%S')"
           echo "tag=${tag}" >> $GITHUB_OUTPUT
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}