We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb569bf commit 3415878Copy full SHA for 3415878
.github/workflows/c.yaml
@@ -49,10 +49,12 @@ jobs:
49
50
- name: Checkout
51
run: |
52
- git clone --depth 1 --filter=blob:none --no-checkout https://github.com/swift-nav/libsbp .
53
- git fetch --depth 1 origin ${{ github.sha }}
54
- git checkout ${{ github.sha }}
55
- git submodule update --depth=1 --recursive --init
+ git config --add safe.directory "${PWD}"
+ git init
+ git remote add origin "https://github.com/${{ github.repository }}"
+ git fetch --no-tags --depth=1 origin "${{ github.ssh }}"
56
+ git checkout "${{ github.sha }}""
57
+ git submodule update --recursive --init --depth=1
58
59
- name: Configure
60
0 commit comments