XIVDeck 0.3.22 #66
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: Build XIVDeck | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-ffxivplugin: | |
name: Build XIVDeck FFXIV Plugin | |
runs-on: windows-latest | |
permissions: | |
id-token: write | |
contents: write | |
attestations: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore Dependencies | |
run: dotnet restore | |
- 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 Plugin | |
run: | | |
$ver = '${{ github.ref }}' -replace 'refs/tags/v','' | |
invoke-expression 'dotnet build --no-restore --configuration Release --nologo -p:AssemblyVersion=$ver -p:Version=$ver -p:FileVersion=$ver FFXIVPlugin' | |
- name: Report Build Hash | |
run: | | |
$fileHashInfo = Get-FileHash .\FFXIVPlugin\bin\Release\XIVDeck.FFXIVPlugin\latest.zip; | |
Write-Output "Hash of XIVDeck.FFXIVPlugin: $($fileHashInfo.Hash)"; | |
- name: Attest Build | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-path: | | |
.\FFXIVPlugin\bin\Release\XIVDeck.FFXIVPlugin.dll | |
.\FFXIVPlugin\bin\Release\**\XIVDeck.FFXIVPlugin.*.dll | |
.\FFXIVPlugin\bin\Release\XIVDeck.FFXIVPlugin\latest.zip | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: XIVDeck.FFXIVPlugin | |
path: .\FFXIVPlugin\bin\Release\XIVDeck.FFXIVPlugin\ | |
build-sdplugin: | |
name: Build XIVDeck Stream Deck Plugin | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
attestations: write | |
defaults: | |
run: | |
working-directory: ./SDPlugin | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: yarn install | |
- name: Patch Version | |
run: | | |
export APP_VERSION=$(echo '${{ github.ref }}' | sed "s!refs/tags/v!!") | |
yarn version --new-version $APP_VERSION --no-git-tag-version | |
- name: Build for Release | |
run: yarn build-release | |
- name: Package Plugin | |
run: (cd dist && zip -r dev.wolf.xivdeck.streamDeckPlugin dev.wolf.xivdeck.sdPlugin) | |
- name: Report Build Hash | |
run: echo "[Build Audit] $(sha256sum dist/dev.wolf.xivdeck.streamDeckPlugin)" | |
- name: Attest Build | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-path: ./SDPlugin/dist/dev.wolf.xivdeck.streamDeckPlugin | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: XIVDeck.SDPlugin | |
path: ./SDPlugin/dist/dev.wolf.xivdeck.streamDeckPlugin | |
- name: Add Artifact to Release | |
uses: shogo82148/actions-upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./SDPlugin/dist/dev.wolf.xivdeck.streamDeckPlugin | |
asset_name: XIVDeck.streamDeckPlugin | |
asset_content_type: application/zip |