-
Notifications
You must be signed in to change notification settings - Fork 5
62 lines (58 loc) · 1.57 KB
/
main.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
60
61
62
name: Build ChimeraOS Installer
on:
push:
branches:
- main
tags: '*'
workflow_dispatch:
jobs:
build-installer:
name: Build Graphical Installer
runs-on: ubuntu-latest
container:
image: archlinux:base-devel
steps:
- uses: actions/checkout@v3
- name: Set up pacman keyring
run: |
pacman-key --init
pacman-key --populate archlinux
mkdir -p /etc/gnupg && echo "auto-key-retrieve" >> /etc/gnupg/gpg.conf
- name: Install dependencies
run: |
pacman -Syu --noconfirm unzip godot wget git fontconfig
- name: Build ChimeraOS installer
id: build
shell: bash
run: |
godot --version
make build
- name: Upload package artifact
if: github.ref_type == 'tag'
uses: actions/upload-artifact@v3
with:
name: chimeraos-installer
path: |
build/chimeraos-installer.x86_64
if-no-files-found: error
make-release:
name: Release
runs-on: ubuntu-latest
needs: build-installer
if: github.ref_type == 'tag'
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: chimeraos-installer
path: '.'
- name: Make release
uses: softprops/action-gh-release@v1
with:
name: ChimeraOS installer
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: true
fail_on_unmatched_files: true
files: |
chimeraos-installer.x86_64