diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0d04519..54b3610 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,16 +9,22 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v3 + - name: Checkout code + uses: actions/checkout@v3 - - name: Compile firmware - run: | - chmod +x compile-with-docker.sh - ./compile-with-docker.sh custom + - name: Compile firmware + run: | + chmod +x compile-with-docker.sh + ./compile-with-docker.sh custom - - name: Upload firmware artifact - uses: actions/upload-artifact@v4 - with: - name: firmware-artifact - path: compiled-firmware/* + - name: Debug files + run: ls -lah + + - name: Debug compiled firmware + run: ls -lah compiled-firmware + + - name: Upload firmware artifact + uses: actions/upload-artifact@v4 + with: + name: firmware-artifact + path: compiled-firmware/*