-
-
Notifications
You must be signed in to change notification settings - Fork 47
40 lines (33 loc) · 877 Bytes
/
conty.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Conty CI
on:
schedule:
- cron: '0 0 * * 5'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
lfs: 'false'
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v6
with:
workflow: utils.yml
workflow_conclusion: success
if_no_artifact_found: ignore
path: /opt
- name: Build Conty
run: |
if [ -f /opt/Utils/utils.tar.gz ]; then
cp /opt/Utils/* .
fi
chmod +x create-arch-bootstrap.sh create-conty.sh
sudo ./create-arch-bootstrap.sh && ./create-conty.sh
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Conty
path: conty.sh