os/.github/workflows/release.yml
Workflow config file is invalid. Please check your config file: yaml: line 11: did not find expected key
2024-02-12 10:22:13 +09:00

39 lines
785 B
YAML

name: release
on:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux:base
options: --privileged
- name: install
run: pacman -Syyu --noconfirm archiso docker
- name: checkout
uses: actions/checkout@v4
- name: build
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
./build.zsh gh
systemctl start docker
docker login -u=$DOCKER_USER -p=$DOCKER_PASSWORD
tar -C ./root.x86_64 -c . | docker import - syui/aios
docker push syui/aios
- name: bootstrap
uses: actions/upload-artifact@v4
with:
name: aios-bootstrap
path: ./*.tar.gz