Update to latest UE4SS #110
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: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
ci: | |
name: Test & Package | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Setup github SSH | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.GBVSR_FRAME_METER_SSH_PRIVATE_KEY }} | |
known_hosts: unnecessary | |
- name: Setup Visual Studio Developer Command Prompt | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Setup xmake | |
uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: branch@dev | |
- name: Run Tests | |
run: .\scripts\test.ps1 | |
- name: Compile & Package Mod | |
run: .\scripts\release.ps1 | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: gbvsr-frame-meter.zip | |
if-no-files-found: error |