-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (36 loc) · 966 Bytes
/
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
name: Build and Publish Artifacts
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Configure CMake
run: |
cmake --preset=build-release-msvc
- name: Build and Install
run: |
cd build
cmake --build --config release-msvc
- name: Prepare artifacts folder
run: |
New-Item -ItemType Directory -Path "artifacts/SKSE/Plugins" -Force
Copy-Item -Recurse -Force build/release-msvc/SkyrimTerrainSlotUnlocker.dll artifacts/SKSE/Plugins/
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: skyrimterrainslotunlocker-artifacts-${{ github.sha }}
path: artifacts