Skip to content

create windows workflow yml #1

create windows workflow yml

create windows workflow yml #1

Workflow file for this run

name: FF_Windows
on:
push:
paths:
- '.github/**'
- 'mp/src/**'
pull_request:
paths:
- 'mp/src/**'
jobs:
build:
runs-on:
windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure dependencies
uses: ilammy/msvc-dev-cmd@v1
- name: Create project
run: cd mp/src;devtools/bin/vpc.exe /2013 /ff +game /mksln Game_FF.sln
- name: Build project
run: cd mp/src;devenv Game_FF.sln /Build Release
- name: Pack
shell: bash
run: tar cJfv Windows.tar.xz mp/game/FortressForever2013/bin
- name: Upload product
uses: actions/upload-artifact@v2
with:
name: FF_2013
path: Windows.tar.xz