name: Release Mod on: push: branches: [master] paths: [".gitea/workflows/release-mod.yml", "Mod/**"] jobs: Build: runs-on: ubuntu-latest defaults: run: working-directory: "./Mod" steps: - uses: actions/checkout@v4 - name: Setup Running in CI Variable run: echo "RUNNING_IN_CI=true" >> $GITHUB_ENV - name: Setup dotnet uses: actions/setup-dotnet@v4 with: dotnet-version: 7.0.x - name: Initialize modding environment uses: beat-forge/init-beatsaber@v1 with: repo: beat-forge/beatsaber-stripped - name: Download Mod Dependencies uses: Goobwabber/download-beatmods-deps@1.2 with: manifest: ${{ gitea.workspace }}/Mod/manifest.json - name: Build id: Build run: dotnet build ScoreTracker.csproj --configuration Release - name: Echo Filename run: echo $BUILDTEXT \($ASSEMBLYNAME\) env: BUILDTEXT: Filename=${{ steps.Build.outputs.filename }} ASSEMBLYNAME: AssemblyName=${{ steps.Build.outputs.assemblyname }} - name: Upload Artifact uses: christopherhx/gitea-upload-artifact@v4 with: name: ${{ steps.Build.outputs.filename }} path: ${{ steps.Build.outputs.artifactpath }}