Skip to content

Commit

Permalink
Add double quotes to shell commands
Browse files Browse the repository at this point in the history
  • Loading branch information
SBGoods committed Jan 10, 2023
1 parent 53bed45 commit b8b4a15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
version: ${{ steps.changelog-version.outputs.version }}
steps:
- id: changelog-version
run: echo "version=$(echo ${{ inputs.versionNumber }} | cut -c 2-)" >> $GITHUB_OUTPUT
run: echo "version=$(echo "${{ inputs.versionNumber }}" | cut -c 2-)" >> "$GITHUB_OUTPUT"
go-version:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.go-version.outputs.version }}
steps:
- uses: actions/checkout@v3
- id: go-version
run: echo "version=$(cat ./.go-version)" >> $GITHUB_OUTPUT
run: echo "version=$(cat ./.go-version)" >> "$GITHUB_OUTPUT"
changelog:
needs: changelog-version
runs-on: ubuntu-latest
Expand Down

0 comments on commit b8b4a15

Please sign in to comment.