diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-17 14:36:21 -0500 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-17 14:36:21 -0500 |
| commit | 1e043c3762b66b529f2b1ee5c849804e12f20511 (patch) | |
| tree | 28a687d0c0bdabc7bc1cabfbf62822f8559460b1 /.github/workflows | |
| parent | 0ce5b01a475697fc5c5794ce1b6ab3216999638b (diff) | |
| download | ghasandbox-1e043c3762b66b529f2b1ee5c849804e12f20511.tar.gz | |
OK
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: |
