hopefully fix normal recalculation for body sliders #37
This file contains hidden or 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: Template | |
| on: | |
| push: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| inputs: | |
| versionString: | |
| description: 'Version String' | |
| type: string | |
| env: | |
| BUILD_TYPE: Release | |
| PROJECT_NAME: Template | |
| PROJECT_LONG_NAME: Template | |
| jobs: | |
| build-skse: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Get CMake | |
| uses: lukka/get-cmake@v3.27.4 | |
| with: | |
| cmakeVersion: "3.27.4" | |
| - name: vcpkg cache | |
| uses: lukka/run-vcpkg@v11 | |
| with: | |
| vcpkgGitCommitId: "b02e341c927f16d991edbd915d8ea43eac52096c" | |
| - name: Run CMake | |
| uses: lukka/run-cmake@v10 | |
| with: | |
| cmakeListsTxtPath: ${{ github.workspace }}/CMakeLists.txt | |
| configurePreset: default | |
| configurePresetAdditionalArgs: "['-DCMAKE_TOOLCHAIN_FILE:STRING=C:/vcpkg/scripts/buildsystems/vcpkg.cmake','-DCMAKE_POLICY_VERSION_MINIMUM=3.5']" | |
| buildPreset: release | |
| buildPresetAdditionalArgs: "['--config Release','-DCMAKE_POLICY_VERSION_MINIMUM=3.5']" | |
| - name: Move binaries | |
| run: | | |
| cd ${{github.workspace}}/build/bin/release | |
| mkdir artifacts | |
| cd artifacts | |
| mkdir SKSE | |
| mkdir SKSE/Plugins | |
| move ../skee64backports.dll SKSE/Plugins | |
| move ../skee64backports.pdb SKSE/Plugins | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: skee64backports | |
| path: build/bin/release/artifacts | |
| retention-days: 90 |