diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-15 13:41:34 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-15 13:41:34 -0500 |
commit | a0a92a52c3726873a99b6725c90e5b16554f2cfc (patch) | |
tree | 93c394e0df3203b1b486c49c698d74e861737951 | |
parent | 354c8e3b6f341532b7fbc861ac4781c2e05186bb (diff) | |
download | ghasandbox-a0a92a52c3726873a99b6725c90e5b16554f2cfc.tar.gz |
OK
-rw-r--r-- | .github/workflows/pipeline_deliver.yml | 6 | ||||
-rw-r--r-- | .github/workflows/stasis_indexer.yml | 30 |
2 files changed, 18 insertions, 18 deletions
diff --git a/.github/workflows/pipeline_deliver.yml b/.github/workflows/pipeline_deliver.yml index d61dff9..634eb89 100644 --- a/.github/workflows/pipeline_deliver.yml +++ b/.github/workflows/pipeline_deliver.yml @@ -8,13 +8,13 @@ on: inputs: artifactory_repo: type: string - description: Artifactory repository name where deliveries are stored + description: Artifactory repository path where deliveries are stored required: true default: "some-repo" mission: type: choice - description: Artifactory <artifactory_repo>/<mission> directory + description: Mission name (e.g. hst) options: - thing1 - thing2 @@ -25,7 +25,7 @@ on: build_name: type: string - description: Artifactory <mission>/<build_name> directory + description: Build name (e.g. MYPIPELINE-1.2.3) requires: true default: "" diff --git a/.github/workflows/stasis_indexer.yml b/.github/workflows/stasis_indexer.yml index 46ad2fc..26e80f0 100644 --- a/.github/workflows/stasis_indexer.yml +++ b/.github/workflows/stasis_indexer.yml @@ -8,24 +8,24 @@ on: inputs: artifactory_repo: type: string - description: Artifactory repository name where deliveries are stored + description: Artifactory repository path where deliveries are stored required: true - default: "scsb-stasis" + default: "some-repo" mission: type: choice - description: Artifactory <artifactory_repo>/<mission> directory + description: Mission name (e.g. hst) options: - - hst - - jwst - - roman - - generic + - thing1 + - thing2 + - thing3 + - thing4 required: true - default: "generic" + default: "thing4" build_name: type: string - description: Artifactory <mission>/<build_name> directory + description: Build name (e.g. MYPIPELINE-1.2.3) requires: true default: "" @@ -33,16 +33,16 @@ on: type: string description: Path to store an indexed delivery required: true - default: "/eng/ssb/websites/ssbpublic/stasis/releases" + default: "/path/to/stasis/releases" stasis_indexer_args: - type: string - description: arguments for stasis tool - required: true - default: "" + type: string + description: arguments for stasis tool + required: true + default: "" env: - REMOTE_PATHS: "/eng/ssb/websites/ssbpublic/stasis" + REMOTE_PATHS: "/path/to/somewhere" #Artifactory service URL (ending in /artifactory) STASIS_JF_ARTIFACTORY_URL: ${{ secrets.ARTIFACTORY_URL }}/artifactory #Artifactory "generic" repository to write to |