Skip to content

Commit 59f6169

Browse files
committed
action: fix gh cli authentication
1 parent 769fa76 commit 59f6169

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,17 @@ jobs:
3131
uses: actions/checkout@v4
3232
- name: Install packaging dependencies
3333
run: sudo apt install -y aria2 libarchive-tools
34-
- name: Run stuff
34+
- name: Setup DwarFS
3535
run: |
3636
sudo cp appdwarf /bin
37-
cd apps
3837
sudo wget https://github.com/mhx/dwarfs/releases/download/v0.9.6/dwarfs-universal-0.9.6-Linux-x86_64-clang -O /bin/mkdwarfs
3938
sudo chmod +x /bin/mkdwarfs
40-
./mk${{ matrix.app }} 21
39+
- name: Build image
40+
env:
41+
GH_TOKEN: ${{ github.token }}
42+
run: |
43+
cd apps
44+
./mk${{ matrix.app }}
4145
- name: Upload build artifact
4246
uses: actions/upload-artifact@v4
4347
with:

0 commit comments

Comments
 (0)