fix(skymp5-server): force template chain recalculation in case of incompatible esp/esm change #690
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 Emscripten | |
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: | |
# MacOS has powershell | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
submodules: 'true' | |
- name: Setup Emscripten environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- uses: ./.github/actions/pr_base | |
with: | |
DESCRIPTION: 'Emscripten Build' | |
DIST_ARTIFACT_NAME: dist-emscripten | |
SERVER_DIST_ARTIFACT_NAME: server-dist-emscripten | |
SKYMP5_PATCHES_PAT: ${{ secrets.SKYMP5_PATCHES_PAT }} | |
EMSCRIPTEN: true |