Fix issue with snapturn not going left if dpad shifting method BOTH i… #461
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: Dev Release | |
on: [push, workflow_dispatch] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
dev-release: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
target: [ue4poc] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- 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 ${{matrix.target}} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2.3.1 | |
with: | |
name: ${{matrix.target}} | |
path: ${{github.workspace}}/build/bin/${{matrix.target}}/* | |
if-no-files-found: error | |
- name: Set outputs | |
id: vars | |
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" |