From 7c901d91183b4644bf23715b04a9688bd4718b6f Mon Sep 17 00:00:00 2001 From: Phantop Date: Thu, 6 Jun 2024 11:16:03 -0400 Subject: [PATCH] action: fix gh cli authentication --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1faa03e..08d3e46 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,13 +31,16 @@ jobs: uses: actions/checkout@v4 - name: Install packaging dependencies run: sudo apt install -y aria2 libarchive-tools - - name: Run stuff + - name: Setup DwarFS run: | sudo cp appdwarf /bin - cd apps sudo wget https://github.com/mhx/dwarfs/releases/download/v0.9.6/dwarfs-universal-0.9.6-Linux-x86_64-clang -O /bin/mkdwarfs sudo chmod +x /bin/mkdwarfs - ./mk${{ matrix.app }} 21 + cd apps + - name: Build image + env: + GH_TOKEN: ${{ github.token }} + run: ./mk${{ matrix.app }} - name: Upload build artifact uses: actions/upload-artifact@v4 with: