We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
wasiless
1 parent a650698 commit b2d4968Copy full SHA for b2d4968
1 file changed
.github/workflows/python-ci.yml
@@ -13,6 +13,16 @@ jobs:
13
runs-on: forge-amd64-medium
14
steps:
15
- uses: actions/checkout@v4
16
+ - name: Get wasiless submodule
17
+ # Org-internal submodules are very tricky to check out.
18
+ env:
19
+ SSHK: ${{ secrets.WASILESS_REPO_READ_KEY }}
20
+ run: |
21
+ mkdir -p $HOME/.ssh
22
+ echo "$SSHK" > $HOME/.ssh/ssh.key
23
+ chmod 600 $HOME/.ssh/ssh.key
24
+ export GIT_SSH_COMMAND="ssh -i $HOME/.ssh/ssh.key"
25
+ git submodule update --init --recursive
26
- name: Set Up Rust Toolchain
27
uses: actions-rust-lang/setup-rust-toolchain@v1
28
with:
0 commit comments