fix(skymp5-server): force template chain recalculation in case of incompatible esp/esm change #891
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR MacOS | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 0 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
VCPKG_BINARY_SOURCES: 'clear;x-gha,readwrite' | |
VCPKG_FEATURE_FLAGS: 'manifests' | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
submodules: 'true' | |
- uses: ./.github/actions/pr_base | |
with: | |
DESCRIPTION: 'MacOS Build' | |
DIST_ARTIFACT_NAME: dist-macos | |
SERVER_DIST_ARTIFACT_NAME: server-dist-macos | |
SKYMP5_PATCHES_PAT: ${{ secrets.SKYMP5_PATCHES_PAT }} |