Skip to content

Commit ecbce32

Browse files
fix: resolve quotes
1 parent 72b77f3 commit ecbce32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-container.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
run: |
4040
BRANCH_NAME=$(echo "${GITHUB_REF##*/}" | tr '[:upper:]' '[:lower:]')
4141
REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
42-
echo "tag=${BRANCH_NAME}" >> $GITHUB_OUTPUT
43-
echo "repo=${REPO_NAME}" >> $GITHUB_OUTPUT
42+
echo "tag=${BRANCH_NAME}" >> "$GITHUB_OUTPUT"
43+
echo "repo=${REPO_NAME}" >> "$GITHUB_OUTPUT"
4444
4545
- name: Set up Docker Buildx
4646
uses: docker/setup-buildx-action@v3
@@ -83,8 +83,8 @@ jobs:
8383
run: |
8484
BRANCH_NAME=$(echo "${GITHUB_REF##*/}" | tr '[:upper:]' '[:lower:]')
8585
REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
86-
echo "tag=${BRANCH_NAME}" >> $GITHUB_OUTPUT
87-
echo "repo=${REPO_NAME}" >> $GITHUB_OUTPUT
86+
echo "tag=${BRANCH_NAME}" >> "$GITHUB_OUTPUT"
87+
echo "repo=${REPO_NAME}" >> "$GITHUB_OUTPUT"
8888
8989
- name: Set up Docker Buildx
9090
uses: docker/setup-buildx-action@v3

0 commit comments

Comments
 (0)