Skip to content

Store rotation offsets in the same way UEVR 'adjust' function does #19

Store rotation offsets in the same way UEVR 'adjust' function does

Store rotation offsets in the same way UEVR 'adjust' function does #19

Workflow file for this run

name: CMake on a single platform
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
permissions:
contents: write
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
# UEVR UESDK submodule uses ssh, rewrite to https with access token
- name: Set github url and credentials
run: |
git config --global url."https://${{ secrets.REPO_ACCESS_TOKEN }}@github.com/.insteadOf" [email protected]:
- name: Configure CMake
run: cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target pacific_drive_plugin
- name: Package
working-directory: ${{github.workspace}}
run: Invoke-Item package.cmd
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: PenDriverPro-Win64-Shipping
path: ${{github.workspace}}/build/Release/profile/*
if-no-files-found: error
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: PenDriverPro-Win64-Shipping.zip
body_path: ${{github.workspace}}/release-template.md