-
-
Notifications
You must be signed in to change notification settings - Fork 22
89 lines (88 loc) · 2.97 KB
/
build-steam-release.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
80
81
82
83
84
85
86
87
88
89
name: 'Steam Release Build'
on:
push:
branches:
- master
- main
jobs:
build-steam-release:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-steam
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
platform: [ windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Get Package Version
id: get-package-version
uses: stevenbenitez/get-package-version-action@v1
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 20.15
cache: npm
- name: Initialize the project
run: npm run ci
- name: Setup LLVM
uses: ZhongRuoyu/setup-llvm@v0
with:
llvm-version: 17
github-token: ${{ github.token }}
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.2
default: true
override: true
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure Rust cache
uses: Swatinem/rust-cache@v2
with:
workspaces: |
src-shared-rust
src-elevated-sidecar
src-core
# - name: Install development Tauri CLI
# run: cargo install --git https://github.com/tauri-apps/tauri --branch 1.x tauri-cli
- name: Get Changelog Entry
id: changelog_reader
uses: mindsers/changelog-reader-action@v2
with:
validation_level: warn
version: ${{ steps.get-package-version.outputs.version }}
path: ./CHANGELOG.md
- name: Prepare Steamworks SDK
env:
STEAM_CONFIG_VDF: ${{ secrets.STEAM_CONFIG_VDF }}
STEAM_APP_ID: '2538150'
APP_VERSION: v${{ steps.get-package-version.outputs.version }}
shell: bash
run: chmod +x ./scripts/steam/1-prepare-steam-sdk.sh && ./scripts/steam/1-prepare-steam-sdk.sh
- name: Set build id
run: npm run set-build-id
- name: Set flavour to STEAM
run: npm run set-flavour STEAM
- name: Build OyasumiVR (STEAM Flavour)
run: npm run tauri -- build -b none
- name: Copy STEAM build
shell: bash
run: chmod +x ./scripts/steam/2-move-build-steam.sh && ./scripts/steam/2-move-build-steam.sh
- name: Set flavour to STEAM_CN
run: npm run set-flavour STEAM_CN
- name: Build OyasumiVR (STEAM_CN Flavour)
run: npm run tauri -- build -b none
- name: Copy STEAM_CN build
shell: bash
run: chmod +x ./scripts/steam/3-move-build-steam-cn.sh && ./scripts/steam/3-move-build-steam-cn.sh
- name: Deploy to Steam
env:
STEAM_BUILD_USER: ${{ secrets.STEAM_BUILD_USER }}
STEAM_APP_ID: '2538150'
shell: bash
run: chmod +x ./scripts/steam/4-steam-deploy.sh && ./scripts/steam/4-steam-deploy.sh