Compare commits
4 Commits
b90fcbdd0d
...
dab6f6dfa2
Author | SHA1 | Date | |
---|---|---|---|
dab6f6dfa2 | |||
fe811ac2d9 | |||
8ac1ac1597 | |||
1f01f6b0e9 |
41
.github/workflows/release.yml
vendored
Normal file
41
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
name: release
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: archlinux:latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Initialize
|
||||||
|
env:
|
||||||
|
DOCKER_USER: ${{ secrets.DOCKER_USER }}
|
||||||
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
pacman -Syuu --noconfirm base-devel archiso docker
|
||||||
|
./build.zsh gh
|
||||||
|
mv *.tar.gz ./aios-bootstrap.tar.gz
|
||||||
|
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: Create new release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
name: Release latest
|
||||||
|
tag_name: latest
|
||||||
|
files:
|
||||||
|
aios-bootstrap.tar.gz
|
@ -57,4 +57,3 @@ $ docker run --rm syui/aios cargo version
|
|||||||
cargo 1.75.0
|
cargo 1.75.0
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
20
build.zsh
20
build.zsh
@ -4,9 +4,15 @@ d=${0:a:h}
|
|||||||
case $1 in
|
case $1 in
|
||||||
bsae)
|
bsae)
|
||||||
a=baseline
|
a=baseline
|
||||||
|
docker=true
|
||||||
|
;;
|
||||||
|
gh)
|
||||||
|
a=releng
|
||||||
|
docker=false
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
a=releng
|
a=releng
|
||||||
|
docker=true
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -49,11 +55,11 @@ arch-chroot root.x86_64 /bin/sh -c 'pacman -Syu --noconfirm base base-devel linu
|
|||||||
arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build && cp -rf ./target/debug/ai /bin/ && ai ai'
|
arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build && cp -rf ./target/debug/ai /bin/ && ai ai'
|
||||||
|
|
||||||
# docker image
|
# docker image
|
||||||
systemctl start docker
|
if [ $docker = true ];then
|
||||||
tar -C $d/root.x86_64 -c . | docker import - syui/aios
|
systemctl start docker
|
||||||
|
tar -C $d/root.x86_64 -c . | docker import - syui/aios
|
||||||
|
|
||||||
docker images -a
|
docker images -a
|
||||||
docker run --rm syui/aios ai
|
docker run --rm syui/aios ai
|
||||||
docker push syui/aios
|
docker push syui/aios
|
||||||
|
fi
|
||||||
# docker run -it syui/aios zsh
|
|
||||||
|
Loading…
Reference in New Issue
Block a user