From 0c73fe2c1cd6ac3039b17126dbce1c9e8716add3 Mon Sep 17 00:00:00 2001 From: ading2210 Date: Fri, 26 Apr 2024 09:44:25 -0700 Subject: [PATCH] fix github action for creating a release --- .github/workflows/build-image.yaml | 3 +++ README.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index f3002bc..b189a7e 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -4,6 +4,9 @@ on: [push] jobs: build: + permissions: + contents: write + strategy: matrix: board: [dedede, octopus, coral, grunt] diff --git a/README.md b/README.md index d47bfc2..f12ef80 100644 --- a/README.md +++ b/README.md @@ -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: ``` 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.