Add ability to manually run workflow #31
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: Build FFXIV Zoom Hack | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
with: | |
vs-version: '[,17)' | |
msbuild-architecture: x64 | |
- name: Build release application | |
run: msbuild /t:rebuild /p:Configuration=Release .\FFXIVZoomHack.sln | |
- name: Archive build artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: "FFXIVZoomHack.exe" | |
path: "FFXIVZoomHack\\bin\\Release\\FFXIVZoomHack.exe" |