fix github action for creating a release

This commit is contained in:
ading2210 2024-04-26 09:44:25 -07:00
parent 43a3e81e73
commit 0c73fe2c1c
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,9 @@ on: [push]
jobs: jobs:
build: build:
permissions:
contents: write
strategy: strategy:
matrix: matrix:
board: [dedede, octopus, coral, grunt] board: [dedede, octopus, coral, grunt]

View File

@ -124,7 +124,7 @@ sudo resize2fs /dev/mmcblk1p4
If your kernel version is too old, the standard Mesa drivers will fail to load. Instead, you must download and install the `mesa-amber` drivers. Run the following commands: If your kernel version is too old, the standard Mesa drivers will fail to load. Instead, you must download and install the `mesa-amber` drivers. Run the following commands:
``` ```
sudo apt install libglx-amber0 libegl-amber0 sudo apt install libglx-amber0 libegl-amber0
echo "MESA_LOADER_DRIVER_OVERRIDE=i965" >> /etc/environment echo "MESA_LOADER_DRIVER_OVERRIDE=i965" | sudo tee -a /etc/environment
``` ```
You may need to change `i965` to `i915` (or `r100`/`r200` for AMD hardware), depending on what GPU you have. You may need to change `i965` to `i915` (or `r100`/`r200` for AMD hardware), depending on what GPU you have.