Skip to content

Commit

Permalink
set ssh
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaudier committed Jul 23, 2024
1 parent 2393e7b commit 032a4e5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,33 @@ jobs:
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist/

ssh_session:
runs-on: ubuntu-latest
needs: [build_wheel]
steps:
- name: Checkout github repo
uses: actions/checkout@v4
- name: Checkout submodules
shell: bash -l {0}
run: |
export GIT_SSL_NO_VERIFY=1
git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: 'x64'
- uses: actions/download-artifact@v4
with:
pattern: dist-*
merge-multiple: true
path: dist/
- name: Start SSH session
uses: luchihoratiu/debug-via-ssh@main
with:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
SSH_PASS: ${{ secrets.SSH_PASS }}

test_wheel:
runs-on: ubuntu-latest
needs: [build_wheel]
Expand Down

0 comments on commit 032a4e5

Please sign in to comment.