-
Notifications
You must be signed in to change notification settings - Fork 118
59 lines (44 loc) · 1.52 KB
/
weekly.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
50
51
52
53
54
55
56
57
58
59
name: Weekly Vinix rebuild
on:
schedule:
- cron: '0 0 * * 6'
jobs:
vinix-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Unshallow repo tags
run: git fetch --prune --unshallow --tags
- name: Check if build is necessary
run: test "$(git tag --points-at HEAD)" = ""
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install make diffutils curl git libarchive-tools rsync xorriso -y
#- name: Build distro
# run: make distro-full
#- name: Build ISO
# run: make all
#- name: Rename vinix.iso
# run: mv vinix.iso vinix-weekly-full-$(date +'%Y%m%d').iso
#- name: Distclean
# run: make distclean
- name: Build base distro
run: make distro-base
- name: Build ISO
run: make all
- name: Rename vinix.iso
run: mv vinix.iso vinix-weekly-base-$(date +'%Y%m%d').iso
- name: Set TAG_DATE variable
run: echo "TAG_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Tag new weekly release
run: git tag weekly-$TAG_DATE && git push --tags
- name: Create weekly release
uses: softprops/action-gh-release@v2
with:
name: Weekly build ${{ env.TAG_DATE }}
tag_name: weekly-${{ env.TAG_DATE }}
body: Image of an up to date Vinix weekly build.
files: |
vinix-weekly-*.iso
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}