Skip to content

Commit

Permalink
Add release internal workflow (#36)
Browse files Browse the repository at this point in the history
Co-authored-by: Mila Page <versusfacit@users.noreply.github.com>
  • Loading branch information
VersusFacit and VersusFacit authored Mar 26, 2024
1 parent 23880f4 commit ee3da67
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions .github/workflows/release-internal.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
# What?
#
# Send a sha as a fully fledged relase to an internal archive for further processing.
# Tag and release an arbitrary ref. Uploads to an internal archive for further processing.
#
# How?
#
# Checkout the sha
# Test it
# Build it
# Upload it
# After checking out and testing the provided ref, the image is built and uploaded.
#
# When?
#
# Manual trigger
# Manual trigger.

name: Release internal patch
name: "Release internal patch"

on:
workflow_dispatch:
Expand All @@ -22,10 +19,11 @@ on:
description: "The release version number (i.e. 1.0.0b1)"
type: string
required: true
sha:
description: "The sha to use (leave empty to use latest on main)"
ref:
description: "The ref (sha or branch name) to use"
type: string
required: false
default: "main"
required: true
package_test_command:
description: "Package test command"
type: string
Expand All @@ -36,19 +34,16 @@ 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"
uses: "dbt-labs/dbt-release/.github/workflows/internal-archive-release.yml@main"

with:
version_number: "${{ inputs.version_number }}"
package_test_command: "${{ inputs.package_test_command }}"
dbms_name: "postgres"
sha: "${{ inputs.sha }}"
ref: "${{ inputs.ref }}"

secrets: "inherit"

0 comments on commit ee3da67

Please sign in to comment.