From 59f6169e631dfacc84fc2b64c1e8f9ab7bf939ac 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 | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1faa03e..ce0f959 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,13 +31,17 @@ 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 + - name: Build image + env: + GH_TOKEN: ${{ github.token }} + run: | + cd apps + ./mk${{ matrix.app }} - name: Upload build artifact uses: actions/upload-artifact@v4 with: