Merge branch 'development' #1
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
paths: | |
- "FicsItCam.uplugin" | |
- "Content/**" | |
- "Source/**" | |
- "ThirdParty/**" | |
pull_request: | |
branches: | |
- "master" | |
- "development" | |
paths: | |
- "Content/**" | |
- "Source/**" | |
- "ThirdParty/**" | |
workflow_dispatch: | |
workflow_call: | |
secrets: | |
WWISE_EMAIL: | |
required: true | |
WWISE_PASSWORD: | |
required: true | |
GH_TOKEN: | |
required: false | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Cleanup | |
run: Remove-Item C:\workspace\SatisfactoryModLoader -Recurse -Force -Confirm:$false -ErrorAction Ignore | |
- uses: actions/checkout@master | |
with: | |
repository: satisfactorymodding/SatisfactoryModLoader | |
ref: refs/heads/dev | |
path: SatisfactoryModLoader | |
- uses: actions/checkout@v2 | |
with: | |
path: Mods/FicsItCam | |
- name: Add Wwise | |
run: | | |
gh release download --repo mircearoata/wwise-cli -p "wwise-cli.exe" | |
./wwise-cli.exe download --sdk-version "2022.1.5.8242" --filter Packages=SDK --filter DeploymentPlatforms=Windows_vc140 --filter DeploymentPlatforms=Windows_vc150 --filter DeploymentPlatforms=Windows_vc160 --filter DeploymentPlatforms=Windows_vc170 --filter DeploymentPlatforms=Linux --filter DeploymentPlatforms= | |
./wwise-cli.exe integrate-ue --integration-version "2022.1.5.2714" --project "C:\workspace\SatisfactoryModLoader\FactoryGame.uproject" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
WWISE_EMAIL: ${{ secrets.WWISE_EMAIL }} | |
WWISE_PASSWORD: ${{ secrets.WWISE_PASSWORD }} | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: Generate VS project files | |
run: C:\workspace\ue\Engine\Build\BatchFiles\Build.bat -projectfiles -project='C:\workspace\SatisfactoryModLoader\FactoryGame.uproject' -game -rocket -progres | |
- name: Build for Development Editor | |
run: MSBuild.exe 'C:\workspace\SatisfactoryModLoader\FactoryGame.sln' /p:Configuration='Development Editor' /p:Platform='Win64' /t:'Games\FactoryGame' -m | |
- name: Build for Shipping/Client | |
run: MSBuild.exe 'C:\workspace\SatisfactoryModLoader\FactoryGame.sln' /p:Configuration='Shipping' /p:Platform='Win64' /t:'Games\FactoryGame' -m | |
- name: Package FicsItCam Mod | |
run: C:\workspace\ue\Engine\Build\BatchFiles\RunUAT.bat -ScriptsForProject='C:\workspace\SatisfactoryModLoader\FactoryGame.uproject' PackagePlugin -project='C:\workspace\SatisfactoryModLoader\FactoryGame.uproject' -clientconfig=Shipping -serverconfig=Shipping -utf8output -DLCName='FicsItCam' -build -platform=Win64 -nocompileeditor | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: FicsItCam | |
path: C:\workspace\SatisfactoryModLoader\Saved\ArchivedPlugins\FicsItCam\FicsItCam-Windows.zip |