Kernel build workflow: Import signing key as correct user #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kernel binary build | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/**' | |
- 'ext/**' | |
- 'Makefile.static' | |
- 'configure' | |
- '.github/workflows/kernel.yml' | |
jobs: | |
kernel: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/lutoma/xelix/toolchain:latest | |
steps: | |
- name: Download PKGBUILD | |
run: 'wget -q https://raw.githubusercontent.com/lutoma/xelix/main/land/xelix-kernel/PKGBUILD' | |
- name: Adjust dir permissions | |
run: 'sudo chown dev: .' | |
- name: Import signing key | |
run: 'echo "${{ secrets.GPG_PRIVATE_KEY }}" | sudo -u dev gpg --import' | |
- name: Run makepkg | |
run: 'sudo -u dev makepkg -Ad --sign' | |
- name: Adjust package name | |
run: 'rename x86_64 i786 *' | |
- name: 'Create package directory' | |
run: 'mkdir kernel-pkg' | |
- name: 'Move stuff around' | |
run: 'mv *.pkg.* kernel-pkg' | |
- name: Upload package as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: kernel-pkg | |
path: kernel-pkg |