mirror of
https://github.com/Kron4ek/Conty
synced 2024-12-27 09:58:25 +01:00
f1d73966b8
ALHP is a repository containing packages from the official Arch Linux repos recompiled with -O3, LTO and optimizations for modern CPUs for better performance. Disabled by default, can be manually enabled. #87
24 lines
465 B
YAML
24 lines
465 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
|
|
sudo ./create-arch-bootstrap.sh && ./create-conty.sh
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: Conty
|
|
path: conty.sh
|