Skip to content

bump submodule

bump submodule #11

name: Create
on:
push:
branches:
- 'testing'
jobs:
build-x86:
permissions: write-all
name: Create image amd64
runs-on: ubuntu-latest
strategy:
matrix:
BUILDTYPE: ["full"]
BUILDARCH: ["amd64"]
steps:
- uses: actions/checkout@v3
- name: Build
id: build_bootable
env:
BUILDTYPE: ${{matrix.BUILDTYPE}}
BUILDARCH: ${{matrix.BUILDARCH}}
run: |
sudo apt-get -qqy update && sudo apt-get -qqy install debootstrap coreutils pigz fdisk kpartx mount uuid-runtime lvm2
bash ./create_image.sh
mv -f quake_bootable-full-amd64.img bootable.img
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: bootable.img
path: bootable.img