-
-
Notifications
You must be signed in to change notification settings - Fork 130
49 lines (41 loc) · 1.35 KB
/
stable.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
41
42
43
44
45
46
47
48
49
name: Stable
on:
schedule:
# Every month at 1 AM
- cron: '0 1 1 * *'
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install Dependencies
run: sudo meta/scripts/setup-ubuntu.sh
- name: Set up the build environment
run: ./skift.sh tools setup && ./skift.sh tools doctor
- name: Download third-party dependencies
run: ./skift.sh model install
- name: Build System Image (efi-x86_64)
run: ./skift.sh image build --format=hdd --prop:branch=stable
- name: Read release.md and use it as a body of new release
id: read_release
run: |
./meta/scripts/dump-body.sh meta/release/stable.md >> $GITHUB_OUTPUT
echo "RELEASE_TAG=$(date +'%y.%m')" >> $GITHUB_ENV
- name: Upload Packages to GitHub
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: .cutekit/images/*.hdd
tag: v${{env.RELEASE_TAG}}
file_glob: true
overwrite: true
promote: true
prerelease: true
body: ${{ steps.read_release.outputs.RELEASE_BODY }}