This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
Merge pull request #1835 from Kagekazu/DRG_LifeSurge #1251
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 | |
# Put your personal access token in a repository secret named PAT for cross-repository access | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
env: | |
PUBLIC_NAME: XIVSlothCombo | |
SOLUTION_NAME: XIVSlothCombo | |
INTERNAL_NAME: XIVSlothCombo | |
RELEASE_DIR: XIVSlothCombo\bin\Release\XIVSlothCombo | |
PERSONAL_PLUGIN_REPO: Nik-Potokar/MyDalamudPlugins | |
PR_PLUGIN_REPO: Nik-Potokar/MyDalamudPlugins | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- 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 -r win ${{ env.SOLUTION_NAME }}.sln | |
dotnet build --configuration Release | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: PluginRepoZip | |
path: ${{ env.RELEASE_DIR }} | |
if-no-files-found: error | |
deploy: | |
needs: build | |
if: "contains(toJSON(github.event.commits.*.message), '[PUSH]')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ env.PERSONAL_PLUGIN_REPO }} | |
token: ${{ secrets.XIVCOMBO_TOKEN }} | |
- uses: actions/download-artifact@v4 | |
with: | |
name: PluginRepoZip | |
path: plugins/${{ env.INTERNAL_NAME }} | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
add: --all | |
author_name: GitHub Action | |
author_email: github-actions[bot]@users.noreply.github.com | |
message: Update ${{ env.INTERNAL_NAME }} |