Merge pull request #21 from BardMusicPlayer/troy-f-patch-1 #3
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 | |
on: | |
push: | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
env: | |
Solution_Name: DalamudDoot | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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 with dotnet | |
run: dotnet build --configuration Release | |
- name: Move latest build to Release | |
run: Move-Item -Path ./DalamudDoot/bin/x64/Release/DalamudDoot/* -Destination ./data -Force | |
- name: Commit latest build | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Update Build" | |
file_pattern: "./data/*.json ./data/*.zip" |