Release to Cloud #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release internal patch | |
on: | |
workflow_dispatch: | |
inputs: | |
version_number: | |
description: "The release version number (i.e. 1.0.0b1)" | |
type: string | |
required: true | |
sha: | |
description: "The ref (sha or branch name) to use" | |
type: string | |
default: "main" | |
required: true | |
package_test_command: | |
description: "Package test command" | |
type: string | |
default: "python -c \"import dbt.adapters.bigquery\"" | |
required: true | |
defaults: | |
run: | |
shell: bash | |
env: | |
PYTHON_TARGET_VERSION: 3.11 | |
jobs: | |
invoke-reusable-workflow: | |
name: "Build and Release Internally" | |
uses: "dbt-labs/dbt-release/.github/workflows/internal-archive-release.yml@mp/finish_internal_workflow" | |
with: | |
version_number: "${{ inputs.version_number }}" | |
package_test_command: "${{ inputs.package_test_command }}" | |
dbms_name: "bigquery" | |
sha: "${{ inputs.sha }}" | |
secrets: "inherit" |