From 9c2c2a152d931147ae18e037cdad39de3427f74a Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 21 Jan 2025 01:38:05 -0500 Subject: OK --- .github/workflows/pipeline_run.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to '.github/workflows/pipeline_run.yml') diff --git a/.github/workflows/pipeline_run.yml b/.github/workflows/pipeline_run.yml index 27ceaac..b6a1081 100644 --- a/.github/workflows/pipeline_run.yml +++ b/.github/workflows/pipeline_run.yml @@ -67,6 +67,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Configure PATH + run: | + echo "PATH=${{ github.workspace }}/bin:$PATH" >> $GITHUB_ENV + #- name: Mount data area # uses: ./.github/actions/sshfs # with: @@ -76,6 +80,14 @@ jobs: # remote_dir: /data # local_dir: /mydata + - name: Get delivery file + run: | + src="${{ inputs.delivery_file }}" + dest="${{ runner.temp }}/$(basename $src)" + getfile "$src" "$dest" + echo "DELIVERY_FILE=$dest" >> $GITHUB_ENV + shell: bash + - name: STASIS (${{ runner.os }}-${{ runner.arch }}) uses: ./.github/actions/stasis with: @@ -83,7 +95,7 @@ jobs: artifactory_url: https://blah.tld artifactory_repo: ${{ inputs.artifactory_repo }} stasis_args: ${{ inputs.stasis_args }} - option_delivery_file: ${{ inputs.delivery_file }} + option_delivery_file: ${{ env.DELIVERY_FILE }} option_verbose: ${{ inputs.verbose }} option_continue_on_error: ${{ inputs.continue_on_error }} option_no_testing: ${{ inputs.no_testing }} -- cgit