mirror of
https://github.com/Force67/ps4delta.git
synced 2025-04-02 11:01:45 -04:00
23 lines
431 B
YAML
23 lines
431 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v2
|
|
with:
|
|
host: windows
|
|
target: desktop
|
|
arch: win64_msvc2017_64
|
|
- name: Invoke MSBuild
|
|
run: cibuild.bat
|
|
shell: cmd
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: Artifacts
|
|
path: bin/Release
|