Skip to content
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:
- name: Build
id: build_bootable
env:
BUILDTYPE: ${{matrix.BUILDTYPE}}
BUILDARCH: ${{matrix.BUILDARCH}}
run: |

Check failure on line 24 in .github/workflows/create-for-testing.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/create-for-testing.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
sudo apt-get -qqy update && sudo apt-get -qqy install debootstrap coreutils pigz fdisk kpartx mount uuid-runtime lvm2
bash ./create_image.sh
mv *.img bootable.img
- uses: actions/upload-artifact@v3
with:
name: bootable.img
path: bootable.img