Skip to content

Commit

Permalink
escape quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Mar 29, 2024
1 parent 75de2d5 commit e0c6456
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ on:
description: "The branch to release from"
type: string
required: true
default: "er/playground"
version_number:
description: "The release version number (i.e. 1.0.0b1)"
type: string
required: true
default: "1.7.12"
test_run:
description: "Test run (Publish release as draft)"
type: boolean
Expand Down Expand Up @@ -195,9 +197,9 @@ jobs:
id: determine-docker-package
run: |
if [ ${{ steps.semver.outputs.minor }} -ge 8 ]; then
json_output={\"package":\["dbt-core"]}
json_output={\"package\":[\"dbt-core\"]}
else
json_output={\"package":\["dbt-core",\"dbt-postgres"]}
json_output={\"package\":[\"dbt-core\",\"dbt-postgres\"]}
fi
echo "matrix=$json_output" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit e0c6456

Please sign in to comment.