diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-15 15:22:00 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-15 15:22:00 -0500 |
commit | c06409e386fe966c9e2e7dea44b76cdd366c260d (patch) | |
tree | 5380256df72030a44f739b44c425af9c81da8b76 /.github/workflows | |
parent | 83f34561f1034b71c8cb9e145b0c773bb8d1eaa2 (diff) | |
download | ghasandbox-c06409e386fe966c9e2e7dea44b76cdd366c260d.tar.gz |
OK
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pipeline_deliver.yml | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/.github/workflows/pipeline_deliver.yml b/.github/workflows/pipeline_deliver.yml index 251d736..b30b55d 100644 --- a/.github/workflows/pipeline_deliver.yml +++ b/.github/workflows/pipeline_deliver.yml @@ -42,21 +42,19 @@ on: default: "" jobs: - checkout: - name: Checkout + deliver: + name: Deliver runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - deliver: - name: Deliver - runs-on: ubuntu-latest - uses: ./.github/workflows/stasis_indexer.yml - with: - artifactory_repo: ${{ inputs.artifactory_repo }} - mission: ${{ inputs.mission }} - build_name: ${{ inputs.build_name }} - destination: ${{ inputs.destination }} - stasis_indexer_args: ${{ inputs.stasis_indexer_args }} + - Name: Index + uses: ./.github/actions/stasis_indexer + with: + artifactory_repo: ${{ inputs.artifactory_repo }} + mission: ${{ inputs.mission }} + build_name: ${{ inputs.build_name }} + destination: ${{ inputs.destination }} + stasis_indexer_args: ${{ inputs.stasis_indexer_args }} |