diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pipeline_deliver.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/pipeline_deliver.yml b/.github/workflows/pipeline_deliver.yml index 78260e4..b76963a 100644 --- a/.github/workflows/pipeline_deliver.yml +++ b/.github/workflows/pipeline_deliver.yml @@ -1,7 +1,7 @@ -name: Deliver Pipeline +name: Index Pipeline run-name: | - Deliver Pipeline + Index Pipeline on: workflow_dispatch: @@ -49,6 +49,15 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Mount data area + uses: ./.github/actions/sshfs + with: + user: ${{ secrets.SVC_SSHFS_USER }} + password: ${{ secrets.SVC_SSHFS_PASS }} + remote_host: example.tld + remote_dir: /data + local_dir: /mydata + - name: Index uses: ./.github/actions/stasis_indexer with: |
