Skip to content

spectator option + fix send event #2

spectator option + fix send event

spectator option + fix send event #2

Workflow file for this run

name: Release
on:
release:
types: [ created ]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
env:
ReferenceUrl: https://exmod-team.github.io/SL-References/Dev.zip
ReferencePath: ${{ github.workspace }}/References
steps:
- uses: actions/checkout@v4
- name: Set Up .NET
uses: actions/setup-dotnet@v4.0.1
with:
dotnet-version: 9.0.x
- name: Download References
run: |
wget -O "References.zip" ${{ env.ReferenceUrl }}
unzip -d ${{ env.ReferencePath }} "References.zip"
- name: Rename Assembly-CSharp
working-directory: ${{ env.ReferencePath }}
run: mv Assembly-CSharp-Publicized.dll Assembly-CSharp.dll
- name: Build
run: dotnet build -c:Release -o Output
- name: Upload Assets
uses: softprops/action-gh-release@v2
with:
files: Output/ScpProximityChat*.dll,Output/ScpProximityChat*.xml