Skip to content

feat: update for 7.0 #7

feat: update for 7.0

feat: update for 7.0 #7

Workflow file for this run

name: Build
on:
[ push, pull_request, workflow_dispatch ]
env:
SOLUTION_NAME: AutoSweep
ZIP_PATH: bin\Release\autoSweep
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.0.3
- name: Download Dalamud
run: |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/latest.zip -OutFile latest.zip
Expand-Archive -Force latest.zip "$env:AppData\XIVLauncher\addon\Hooks\dev\"
- name: Build
run: |
dotnet restore
dotnet build -c Release
- name: Create artifact
uses: actions/upload-artifact@v2
with:
name: ReleaseZip
path: ${{ env.ZIP_PATH }}
if-no-files-found: error