We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e84937 commit 3d11cabCopy full SHA for 3d11cab
.github/workflows/build.yaml
@@ -17,13 +17,15 @@ jobs:
17
- name: Set up QEMU
18
uses: docker/setup-qemu-action@v2
19
- name: Configure ccache
20
- run: echo "CCACHE_DIR=$RUNNER_TEMP/ccache" >> $GITHUB_ENV
+ run: |
21
+ echo "CCACHE_DIR=$RUNNER_TEMP/ccache" >> $GITHUB_ENV
22
+ echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
23
- name: Reset ccache statistics
24
run: ccache -M 0 -F 0
- - name: Build package
25
+ - name: Build image and modules
26
run: |
27
export RELEASE=$(($RELEASE_START+$GITHUB_RUN_NUMBER))
- ./dev-make kernel-package
28
+ ./dev-make kernel-image-and-modules
29
- name: Release package
30
env:
31
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments