-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finish internal build workflow #945
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the dbt-snowflake contributing guide. |
|
||
uses: VersusFacit/dbt-release/.github/workflows/internal-archive-release.yml@main | ||
uses: "dbt-labs/dbt-release/.github/workflows/internal-archive-release.yml@mp/finish_internal_workflow" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Going to change this once main
has all the changes needed to support all the other workflows. Since this PR's workflow can be invoked using the branch reference, I'll merge at the time I can revert to main (unless there is an alternate path desired)
setup.py
Outdated
@@ -33,8 +33,9 @@ def _get_plugin_version_dict(): | |||
_version_path = os.path.join(this_directory, "dbt", "adapters", "snowflake", "__version__.py") | |||
_semver = r"""(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)""" | |||
_pre = r"""((?P<prekind>a|b|rc)(?P<pre>\d+))?""" | |||
_build = r"""(\+build[0-9]+)?""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ?
renders it optional which is what I think we want -- there will be many builds without this suffix.
e7fd38f
to
fe6bffa
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving, but same comments as dbt-labs/dbt-redshift#735
Finished build for last sha! https://github.com/dbt-labs/dbt-snowflake/actions/runs/8443836576 |
sha concern will be followed up in next PR. |
Problem
We need a workflow that calls the internal build release workflow found here.
Solution
This PR adds the file and documents the what/how/why.
Proof of the build process working:
Checklist