Skip to content

feat: add shader cache cleaner and extend FiveM cache cleaner #8

feat: add shader cache cleaner and extend FiveM cache cleaner

feat: add shader cache cleaner and extend FiveM cache cleaner #8

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore src/OpenTweak/OpenTweak.csproj
- name: Build
run: dotnet build src/OpenTweak/OpenTweak.csproj -c Release --no-restore
- name: Publish
run: dotnet publish src/OpenTweak/OpenTweak.csproj -c Release -o publish --no-build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: OpenTweak
path: publish/OpenTweak.exe
retention-days: 30