diff options
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 }} |