mirror of
https://github.com/Kron4ek/Conty
synced 2024-12-27 09:58:25 +01:00
5fc1df2043
Github Actions will build Conty weekly and utils monthly.
24 lines
492 B
YAML
24 lines
492 B
YAML
name: Conty CI
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 5'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build Conty
|
|
run: |
|
|
chmod +x create-arch-bootstrap.sh create-conty.sh
|
|
sed -i 's/sed/#sed/g' create-arch-bootstrap.sh
|
|
sudo ./create-arch-bootstrap.sh && ./create-conty.sh
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: Conty
|
|
path: conty.sh
|