Skip to content

fixed seasons incompatibility #22

fixed seasons incompatibility

fixed seasons incompatibility #22

Workflow file for this run

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: recursive
fetch-depth: 0
- name: Configure CMake
run: |
cmake --preset=build-release-msvc
- name: Build and Install
run: |
cmake --build --preset=release-msvc
- name: Prepare artifacts folder
run: |
New-Item -ItemType Directory -Path "artifacts/SKSE/Plugins" -Force
Copy-Item -Recurse -Force build/release-msvc/TerrainHelper.dll artifacts/SKSE/Plugins/
Copy-Item -Force plugins/TerrainHelper.esp artifacts/
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: terrainhelper-artifacts-${{ github.sha }}
path: artifacts