update red4ext.sdk #56
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: [ master ] | |
paths: | |
- 'scripts/**' | |
- 'src/**' | |
- 'vendor/**' | |
- '**.lua' | |
- '.github/workflows/build.yml' | |
pull_request: | |
branches: [ master ] | |
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 cet_mod_manager | |
xmake.exe embed | |
xmake.exe package installer | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: package | |
path: build/package/ |