diff --git a/.changes/unreleased/Under the Hood-20240320-150905.yaml b/.changes/unreleased/Under the Hood-20240320-150905.yaml deleted file mode 100644 index 5074569d..00000000 --- a/.changes/unreleased/Under the Hood-20240320-150905.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Finalize the postgres workflow -time: 2024-03-20T15:09:05.315793-07:00 -custom: - Author: versusfacit - Issue: "38" diff --git a/.github/workflows/release-internal.yml b/.github/workflows/release-internal.yml index 4427a22c..4284eb74 100644 --- a/.github/workflows/release-internal.yml +++ b/.github/workflows/release-internal.yml @@ -1,10 +1,10 @@ # What? # -# Tag and release an arbitrary sha. Uploads to an internal archive for further processing. +# Tag and release an arbitrary ref. Uploads to an internal archive for further processing. # # How? # -# After checking out and testing the provided sha, the image is built and uploaded. +# After checking out and testing the provided ref, the image is built and uploaded. # # When? # @@ -19,8 +19,8 @@ on: description: "The release version number (i.e. 1.0.0b1)" type: string required: true - sha: - description: "The ref (sha or branch name) to use" + ref: + description: "The ref (ref - sha or branch name) to use" type: string default: "main" required: true @@ -34,9 +34,6 @@ defaults: run: shell: "bash" -env: - PYTHON_TARGET_VERSION: 3.8 - jobs: invoke-reusable-workflow: name: "Build and Release Internally" @@ -47,6 +44,6 @@ jobs: version_number: "${{ inputs.version_number }}" package_test_command: "${{ inputs.package_test_command }}" dbms_name: "postgres" - sha: "${{ inputs.sha }}" + ref: "${{ inputs.ref }}" secrets: "inherit"