Patch and use the Machina library bundled in FFXIV_ACT_Plugin #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: IINACT build | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DALAMUD_HOME: /tmp/dalamud | |
DOTNET_NOLOGO: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Download Dalamud | |
shell: pwsh | |
run: | | |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -OutFile latest.zip | |
Expand-Archive -Force latest.zip /tmp/dalamud | |
- name: Build | |
run: dotnet build -c release | |
- name: Prepare Build Artifact | |
shell: pwsh | |
run: | | |
Copy-Item "IINACT/bin/Release/win-x64/IINACT/latest.zip" -Destination "IINACT.zip" | |
Expand-Archive -Force IINACT.zip Artifact | |
- name: Upload IINACT | |
uses: actions/upload-artifact@v3 | |
with: | |
name: IINACT | |
path: Artifact/* |