From e7489383a21c414bbcbdd1aecb0616e51a344cab Mon Sep 17 00:00:00 2001 From: leahwicz <60146280+leahwicz@users.noreply.github.com> Date: Tue, 2 May 2023 23:11:27 -0400 Subject: [PATCH] Update release-docker.yml --- .github/workflows/release-docker.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index d852c9ac72e..7b11b9d01f4 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -18,13 +18,13 @@ permissions: on: workflow_call: inputs: - package_name: + package: description: The package to release. _One_ of [dbt-core, dbt-redshift, dbt-bigquery, dbt-snowflake, dbt-spark, dbt-postgres] required: true type: string workflow_dispatch: inputs: - package_name: + package: description: The package to release. _One_ of [dbt-core, dbt-redshift, dbt-bigquery, dbt-snowflake, dbt-spark, dbt-postgres] required: true type: string @@ -46,9 +46,8 @@ jobs: - name: "[DEBUG] Print Variables" run: | echo "All variables defined as inputs" - echo "The package_name: ${{ inputs.package_name }}" + echo "The package: ${{ inputs.package }}" echo "The version_number: ${{ inputs.version_number }}" - echo "The ====: ${{ toJSON(inputs) }}" - name: "Check out the repository" uses: actions/checkout@v3