colibri-imx6: honor vendor prefix in kernels >= 6.5

This commit is contained in:
Simon Vogl 2024-12-04 15:29:46 +01:00 committed by Simon Vogl
commit 9d54afa6b1
2 changed files with 6 additions and 4 deletions

View File

@ -19,15 +19,17 @@ jobs:
- name: Run license generation script - name: Run license generation script
run: | run: |
chmod +x ./generate-license-file.sh ./scripts/generate-license-file
./generate-license-file.sh
- name: Commit and push LICENSE file - name: Commit and push LICENSE file
run: | run: |
git config --local user.name "github-actions[bot]" git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.email "github-actions[bot]@users.noreply.github.com"
git add LICENSE git add LICENSE
git commit -m "Auto-update LICENSE file with current recipe licenses" if ! git diff-index --quiet HEAD; then
git push git commit -m "Auto-update LICENSE file with current recipe licenses"
git push
fi
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File