Skip to content
This repository was archived by the owner on Jun 14, 2023. It is now read-only.

Commit 909dfd5

Browse files
author
Felix Schütt
committed
Test cloning private repo
1 parent 9783af3 commit 909dfd5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/main.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ jobs:
6767
# SCCACHE_AZURE_CONNECTION_STRING: ${{ secrets.SCCACHE_AZURE_CONNECTION_STRING }}
6868
steps:
6969
- uses: actions/checkout@v2
70+
- name: Clone private repo
71+
run: |
72+
echo https://wasmer:${{secrets.GH_PAT}}@github.com > .creds
73+
git config --global credential.helper "store --file .creds"
74+
git clone https://github.com/wasmerio/pirita.git
7075
- name: Install Rust ${{ matrix.rust }}
7176
uses: actions-rs/toolchain@v1
7277
with:
@@ -82,7 +87,6 @@ jobs:
8287
run: |
8388
echo "CARGO_HOME=$(pwd)/.cargo_home" >> $GITHUB_ENV
8489
echo "CARGO_NET_GIT_FETCH_WITH_CLI=true" >> $GITHUB_ENV
85-
ssh-add
8690
echo https://wasmer:${{ secrets.GH_PAT }}@github.com > .creds
8791
git config --global credential.helper "store --file .creds"
8892
# - name: Install sccache

0 commit comments

Comments
 (0)