add support for cybercmd to skip breaching screen #5
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 | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'scripts/**' | |
- 'src/**' | |
- '**.lua' | |
- '.github/workflows/build.yml' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Setup xmake | |
uses: xmake-io/github-action-setup-xmake@v1 | |
- name: Update xmake repository and install dependencies | |
run: | | |
xmake.exe repo --update | |
xmake.exe q --yes | |
- name: Build and Package | |
run: | | |
xmake.exe build | |
xmake.exe package | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: package | |
path: build/package/ |