-
Notifications
You must be signed in to change notification settings - Fork 43
66 lines (55 loc) · 1.69 KB
/
build.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
63
64
65
66
name: build
on: [push]
env:
sfall_version: 4.4.2
mpack_version: 4.4.2
jobs:
build:
if: ${{ github.actor != 'bgforge-hive' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
set -xeu -o pipefail
./extra/tests.sh
- name: Install packages
run: |
set -xeu -o pipefail
sudo dpkg --add-architecture i386
sudo apt -qq update
sudo apt-get install -o=Dpkg::Use-Pty=0 -y libgcc-s1:i386 libstdc++6:i386 crudini dos2unix gcc p7zip wine-stable wine32
wineboot
- name: Build and package
run: ./extra/full.sh
- name: Upload artifacts - exe
uses: actions/upload-artifact@v3
if: "!startsWith(github.ref, 'refs/tags/')"
with:
name: rpu.exe
path: rpu*.exe
- name: Upload artifacts - translations zip
uses: actions/upload-artifact@v3
if: "!startsWith(github.ref, 'refs/tags/')"
with:
name: rpu_translations.zip
path: rpu*_translations.zip
# so that main glob doesn't catch it
- name: Remove translations zip
if: "!startsWith(github.ref, 'refs/tags/')"
run: rm -f rpu*_translations.zip
- name: Upload artifacts - main zip
uses: actions/upload-artifact@v3
if: "!startsWith(github.ref, 'refs/tags/')"
with:
name: rpu.zip
path: rpu*.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
rpu*.zip
rpu*.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}