We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e8618a commit d18a4e6Copy full SHA for d18a4e6
2 files changed
.github/workflows/build.yml
@@ -17,6 +17,7 @@ jobs:
17
18
- name: Build
19
run: |
20
+ git submodule update --init
21
docker run --rm -v $PWD:/app -w /app ghcr.io/panda-re/embedded-toolchains:latest /app/build.sh
22
tar -czvf build.tar.gz build
23
@@ -52,4 +53,4 @@ jobs:
52
53
env:
54
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55
with:
- id: ${{ steps.create_release.outputs.id }}
56
+ id: ${{ steps.create_release.outputs.id }}
.github/workflows/tests.yml
@@ -12,8 +12,10 @@ jobs:
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v4
15
+ with:
16
+ submodules: true
-
+
0 commit comments