feat: some healths #184
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 Assets | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.cdn_branch }} | |
cancel-in-progress: true | |
env: | |
DEPOT_DOWNLOADER_USERNAME: ${{ secrets.DEPOT_DOWNLOADER_USERNAME }} | |
DEPOT_DOWNLOADER_PASSWORD: ${{ secrets.DEPOT_DOWNLOADER_PASSWORD }} | |
STEAM_OS: windows | |
STEAM_APP: 3341250 | |
STEAM_DEPOT: 3341251 | |
jobs: | |
download_client: | |
name: Download client | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0 | |
- name: Restore | |
run: | | |
cd src/BlitzKit.CLI | |
dotnet restore | |
- name: Setup DepotDownloader | |
run: | | |
mkdir -p temp | |
echo "Downloading..." | |
DOWNLOAD_URL=$(curl -s https://api.github.com/repos/SteamRE/DepotDownloader/releases/latest | \ | |
grep -i "linux-x64" | \ | |
grep "browser_download_url" | \ | |
cut -d '"' -f 4) | |
curl -L "$DOWNLOAD_URL" -o temp/depotDownloader.zip | |
echo "Unzipping..." | |
unzip temp/depotDownloader.zip -d temp/depotDownloader | |
echo "Download complete; files:" | |
ls temp/depotDownloader | |
- name: Download client | |
run: | | |
chmod +x temp/depotDownloader/DepotDownloader | |
temp/depotDownloader/DepotDownloader \ | |
-username "${{ env.DEPOT_DOWNLOADER_USERNAME }}" \ | |
-password "${{ env.DEPOT_DOWNLOADER_PASSWORD }}" \ | |
-os ${{ env.STEAM_OS }} \ | |
-app ${{ env.STEAM_APP }} \ | |
-depot ${{ env.STEAM_DEPOT }} \ | |
-dir temp/depot | |
- name: Unpack | |
run: | | |
cd src/BlitzKit.CLI | |
dotnet run unpack ../../temp/depot/ | |
- name: Archive VFS | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vfs | |
path: temp/vfs |