Use https git clones in workflows
This commit is contained in:
parent
4995c400ce
commit
4273ddb6d0
1 changed files with 4 additions and 1 deletions
5
.github/workflows/benchmark.yml
vendored
5
.github/workflows/benchmark.yml
vendored
|
@ -16,6 +16,9 @@ jobs:
|
|||
- name: Get other system specs
|
||||
run: uname -a
|
||||
|
||||
- name: Configure git to use HTTPS
|
||||
run: git config --global url."https://${{ secrets.AUTOMATED_GITHUB_PAT }}:x-oauth-basic@github.com".insteadOf ssh://git@github.com
|
||||
|
||||
- name: Clone Desktop repo
|
||||
uses: actions/checkout@v2
|
||||
- name: Clone Mock-Server repo
|
||||
|
@ -23,7 +26,7 @@ jobs:
|
|||
with:
|
||||
repository: 'signalapp/Mock-Signal-Server-Private'
|
||||
path: 'Mock-Server'
|
||||
ref: 'alpha'
|
||||
ref: 'main'
|
||||
token: ${{ secrets.AUTOMATED_GITHUB_PAT }}
|
||||
|
||||
- name: Setup node.js
|
||||
|
|
Loading…
Add table
Reference in a new issue