We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1135274 commit bf3a690Copy full SHA for bf3a690
.github/workflows/build.yml
@@ -8,8 +8,10 @@ jobs:
8
- name: checkout repository
9
uses: actions/checkout@v4
10
11
- - name: install dependencies
12
- run: sudo apt install debootstrap
+ - name: Install debootstrap
+ run: |
13
+ wget https://salsa.debian.org/installer-team/debootstrap/-/raw/master/debootstrap
14
+ sudo mv debootstrap /usr/local/bin
15
16
- name: exec scripts/build_all.sh
17
run: sudo bash -c "cd scripts && chmod +x -R . && ./build_all.sh"
@@ -18,4 +20,4 @@ jobs:
18
20
uses: actions/upload-artifact@v4
19
21
with:
22
name: Artifacts
- path: build/system.img
23
+ path: build/system.img
0 commit comments