bump Discord.Net to 3.13.0 #14
Workflow file for this run
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 Plugin | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup Nuget | |
uses: nuget/setup-nuget@v1 | |
with: | |
nuget-version: 'latest' | |
- name: Restore Nuget Packages | |
run: nuget restore ACT_DiscordTriggers.sln | |
- name: Download ACT Binaries | |
shell: powershell | |
run: | | |
New-Item -ItemType Directory packages | |
Invoke-WebRequest https://advancedcombattracker.com/includes/page-download.php?id=57 -OutFile packages/act.zip | |
Expand-Archive -Path packages/act.zip -DestinationPath packages | |
- name: Build | |
run: msbuild ACT_DiscordTriggers.sln -p:Configuration=Release | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ACT_DiscordTriggers-Prerelease | |
path: './ACT_DiscordTriggers/bin/Release/net48/ACT_DiscordTriggers.dll' |