From d632075af2f3ee8df5f4b14dc01c12e79d2706e9 Mon Sep 17 00:00:00 2001 From: Mila Page Date: Tue, 26 Mar 2024 12:46:13 -0700 Subject: [PATCH] Finalize postgres job. Adjust param name and nix env var. --- .../unreleased/Under the Hood-20240320-150905.yaml | 6 ------ .github/workflows/release-internal.yml | 13 +++++-------- 2 files changed, 5 insertions(+), 14 deletions(-) delete mode 100644 .changes/unreleased/Under the Hood-20240320-150905.yaml 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"