Build #9
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: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core 8.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0' | |
- name: Setup SteamCMD | |
uses: Lordfirespeed/setup-steamcmd@v2 | |
- name: Populate SteamCMD profile config | |
uses: Lordfirespeed/auth-steamcmd@v1 | |
with: | |
steam_config_vdf: ${{ secrets.STEAM_CONFIG_VDF }} | |
steam_username: ${{ secrets.STEAM_USERNAME }} | |
- name: Update app | |
run: steamcmd +login ${{ secrets.STEAM_USERNAME }} \ | |
force_install_dir ./gamedir \ | |
+app_update 1683151 validate +quit | |
- name: debug | |
run: ls -lah ./gamedir | |
- name: Build | |
run: dotnet build -r win-x64 -p:GameDir=$(pwd)/gamedir | |
- name: Save Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: bin |