Skip to content

Commit 93b41d7

Browse files
committed
Quote envvar to match documentation
1 parent bdfeee8 commit 93b41d7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
fi
5959
6060
npm version --no-git-tag-version $VERSION_STRING
61-
echo "version_build=${VERSION_STRING}+${RUN_NUMBER}" >> $GITHUB_OUTPUT
61+
echo "version_build=${VERSION_STRING}+${RUN_NUMBER}" >> "$GITHUB_OUTPUT"
6262
6363
- name: Get npm cache directory
6464
id: npm-cache-dir
6565
run: |
66-
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
66+
echo "dir=$(npm config get cache)" >> "$GITHUB_OUTPUT"
6767
6868
- uses: actions/cache@v2
6969
id: npm-cache

.github/workflows/draft-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
id: version_step
3535
run: |
3636
PACKAGE_VERSION=$(node -p "require('./package.json').version")
37-
echo "version=${PACKAGE_VERSION}" >> $GITHUB_OUTPUT
37+
echo "version=${PACKAGE_VERSION}" >> "$GITHUB_OUTPUT"
3838
3939
- name: Install dependencies
4040
run: "npm ci"

.github/workflows/sync-wiki.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414

1515
- id: get-commit-info
1616
run: |
17-
echo "author=$(git log -1 --pretty=format:'%an <%ae>')" >> $GITHUB_OUTPUT
18-
echo "message=$(git show -s --format=%B)" >> $GITHUB_OUTPUT
17+
echo "author=$(git log -1 --pretty=format:'%an <%ae>')" >> "$GITHUB_OUTPUT"
18+
echo "message=$(git show -s --format=%B)" >> "$GITHUB_OUTPUT"
1919
2020
- run: git clone https://$GITHUB_TOKEN@github.com/vmware/vrealize-developer-tools.wiki.git /tmp/wiki-repo
2121
env:

0 commit comments

Comments
 (0)