1 parent 5e19e9f commit f2dc0acCopy full SHA for f2dc0ac
1 file changed
.github/workflows/build-tiny-engine-portal.yml
@@ -17,12 +17,19 @@ jobs:
17
build:
18
runs-on: ubuntu-latest
19
steps:
20
+ - uses: webfactory/ssh-agent@v0.8.0
21
+ with:
22
+ ssh-private-key: ${{ secrets.SUBMODULE_SSH_KEY }}
23
- name: Checkout
24
uses: actions/checkout@v3
25
- name: Setup pnpm
26
uses: pnpm/action-setup@v3
27
with:
28
version: 9
29
+ - name: Configure Git identity
30
+ run: |
31
+ git config --global user.name "GitHub Actions"
32
+ git config --global user.email "actions@github.com"
33
- name: Install deps
34
run: pnpm -F tiny-engine-portal install --ignore-scripts --no-frozen-lockfile
35
- name: Ensure submodules are up-to-date (pull latest from their remote)
0 commit comments