Skip to content

Commit 9cfbe16

Browse files
authored
Fix: [AEA-0000] - remove extra space in github action files (#50)
## Summary - Routine Change ### Details - remove extra space in github action files when outputting version
1 parent c150af4 commit 9cfbe16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
NEW_SPEC_VERSION=$(echo "$tagFormat" | sed "s/\${version}/$NEXT_VERSION/")
7777
echo "## SPEC VERSION :** ${SPEC_VERSION}" >> "$GITHUB_STEP_SUMMARY"
7878
echo "## NEXT TAG WILL BE :** ${NEW_SPEC_VERSION}" >> "$GITHUB_STEP_SUMMARY"
79-
echo "SPEC_VERSION=${SPEC_VERSION }" >> "$GITHUB_OUTPUT"
79+
echo "SPEC_VERSION=${SPEC_VERSION}" >> "$GITHUB_OUTPUT"
8080
echo "SPEC_VERSION=${SPEC_VERSION}" >> "$GITHUB_ENV"
8181
env:
8282
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
# shellcheck disable=SC2001
7474
SPEC_VERSION=$(echo "$tagFormat" | sed "s/\${version}/$NEXT_VERSION/")
7575
echo "## SPEC VERSION :** ${SPEC_VERSION}" >> "$GITHUB_STEP_SUMMARY"
76-
echo "SPEC_VERSION=${SPEC_VERSION }" >> "$GITHUB_OUTPUT"
76+
echo "SPEC_VERSION=${SPEC_VERSION}" >> "$GITHUB_OUTPUT"
7777
echo "SPEC_VERSION=${SPEC_VERSION}" >> "$GITHUB_ENV"
7878
env:
7979
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)