2023-12-09 16:29:32 +00:00
|
|
|
name: Build ISOs
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-isos:
|
2023-12-09 17:25:30 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-09 16:29:32 +00:00
|
|
|
container:
|
|
|
|
image: node:16-bullseye
|
2023-12-09 18:06:04 +00:00
|
|
|
privileged: no
|
|
|
|
volumes:
|
|
|
|
- /srv/vapps/gitea-rootless/volumes/test2:/data
|
2023-12-09 16:29:32 +00:00
|
|
|
steps:
|
|
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
2023-12-09 17:41:15 +00:00
|
|
|
- run: cd /data
|
2023-12-09 17:30:02 +00:00
|
|
|
- run: apt-get update; apt-get install -y live-build
|
2023-12-09 17:28:41 +00:00
|
|
|
- run: lb build
|