-
-
Notifications
You must be signed in to change notification settings - Fork 20
79 lines (77 loc) · 2.47 KB
/
build_dev_version.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
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Build development version
on:
push:
branches:
- 'master'
jobs:
remove_old_artifacts:
name: Remove old artifacts
runs-on: ubuntu-latest
steps:
- name: Remove old artifacts
uses: ThreadsStyling/purge-artifacts-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
expire-in: 0
upload_dev_build_artifact:
name: Upload development build
needs: remove_old_artifacts
runs-on: ${{ matrix.os }}
environment: "Build Environment"
strategy:
matrix:
build:
- win-x64
- linux-x64
include:
- build: win-x64
os: windows-latest
archive_type: zip
archive_extension: .zip
- build: linux-x64
os: ubuntu-latest
archive_type: tar
archive_extension: .tgz
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: "Setup Dotnet for use with actions"
uses: actions/setup-dotnet@v4
with:
global-json-file: Fronter.NET/global.json
- name: "Replace frontend background image"
run: |
rm Fronter.NET/Fronter.NET/Assets/Images/background.png
cp ImperatorToCK3/Resources/images/SteamMainImage.png Fronter.NET/Fronter.NET/Assets/Images/background.png
- name: "Build frontend"
uses: ./Fronter.NET/.github/actions/build_frontend
with:
fronter_dir: 'Fronter.NET'
release_dir: 'Publish'
env:
BACKBLAZE_KEY_ID: ${{ secrets.BACKBLAZE_KEY_ID }}
BACKBLAZE_APPLICATION_KEY: ${{ secrets.BACKBLAZE_APPLICATION_KEY }}
BACKBLAZE_BUCKET_ID: ${{ secrets.BACKBLAZE_BUCKET_ID }}
- name: Setup Dotnet for use with actions
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: "Build backend"
working-directory: ImperatorToCK3
run: |
dotnet publish -p:PublishProfile=${{ matrix.build }} -c:Release --output:"../Publish/ImperatorToCK3"
- name: Archive Publish folder
uses: thedoctor0/zip-release@master
with:
type: ${{ matrix.archive_type }}
directory: 'Publish'
path: '.'
filename: '../ImperatorToCK3-${{ matrix.build }}-dev${{ matrix.archive_extension }}'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ImperatorToCK3-${{ matrix.build }}-dev
path: 'ImperatorToCK3-${{ matrix.build }}-dev${{ matrix.archive_extension }}'
retention-days: 30