diff options
-rw-r--r-- | .github/workflows/pipeline_deliver.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/pipeline_deliver.yml b/.github/workflows/pipeline_deliver.yml index 4865a90..251d736 100644 --- a/.github/workflows/pipeline_deliver.yml +++ b/.github/workflows/pipeline_deliver.yml @@ -42,6 +42,13 @@ on: default: "" jobs: + checkout: + name: Checkout + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + deliver: name: Deliver runs-on: ubuntu-latest @@ -52,7 +59,4 @@ jobs: build_name: ${{ inputs.build_name }} destination: ${{ inputs.destination }} stasis_indexer_args: ${{ inputs.stasis_indexer_args }} - steps: - - name: Checkout - uses: actions/checkout@v4 |