-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: GiR-Blunti <700028+GiR-Blunti@users.noreply.github.com>
- Loading branch information
1 parent
49dc68c
commit 027f81b
Showing
31 changed files
with
1,216 additions
and
943 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
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" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"Author": "GiR-Zippo, Meowchestra, MoogleTroupe", | ||
"Name": "DalamudDoot", | ||
"InternalName": "DalamudDoot", | ||
"Punchline": "Bard Music Player 2 companion plugin.", | ||
"Description": "Bard Music Player 2 companion plugin.", | ||
"ApplicableVersion": "any", | ||
"Tags": [ | ||
"Midi", | ||
"Performance", | ||
"Bard" | ||
] | ||
} |
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
Oops, something went wrong.