v1.0.7.0 opt in data collection and double chests content #43
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: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3.0.3 | |
with: | |
dotnet-version: '7.x.x' | |
- name: Restore | |
run: dotnet restore | |
- name: Download Dalamud | |
run: | | |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -OutFile latest.zip | |
Expand-Archive -Force latest.zip "$env:AppData\XIVLauncher\addon\Hooks\dev\" | |
- name: Build | |
run: | | |
dotnet build --no-restore --configuration Release --nologo | |
- run: | | |
rm -R ./NecroLens/bin/x64/Release/NecroLens | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v2.2.1 | |
with: | |
name: latest | |
path: ./NecroLens/bin/x64/Release/ |