Skip to content

Commit

Permalink
Correctly quote variables in client gen workflow. (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsomething authored Sep 17, 2024
1 parent 4315d0b commit 2d5b0e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-client-gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check pr_title outputs
run: echo ${{ steps.pr_title_var.outputs.PR_TITLE }}
run: echo "${{ steps.pr_title_var.outputs.PR_TITLE }}"

- name: Create Pull Request
id: create-pr
if: steps.add-commit-changes.outcome == 'success'
run: |
export CURRENT=$(cat DO_OPENAPI_COMMIT_SHA.txt)
export TARGET=${{ github.event.inputs.openapi_short_sha }}
export CURRENT="$(cat DO_OPENAPI_COMMIT_SHA.txt)"
export TARGET="${{ github.event.inputs.openapi_short_sha }}"
export TITLE="${{ steps.pr_title_var.outputs.PR_TITLE }}"
envsubst < scripts/pr_body.md_tmpl > pr_body.md
cat changelist.md >> pr_body.md
Expand Down

0 comments on commit 2d5b0e4

Please sign in to comment.