From 6432c49c89d75cde259417c6a6ec9113f9b1d174 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 10 Aug 2025 09:52:45 -0400 Subject: [PATCH 1/2] Remove FUNDING information --- .github/FUNDING.yml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 61b0227..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -ko_fi: redstrate From 1bbd05d74ff3d08decd8e94c0c771a94cccca744 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 10 Aug 2025 09:53:36 -0400 Subject: [PATCH 2/2] Add CI to build plugin --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..2f73e71 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: Build + +on: + push: + pull_request: + +jobs: + build: + name: "Build" + runs-on: ubuntu-latest + # Skip running on PR events that come from the same repository, it will just duplicate the branch action + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name + + steps: + - uses: actions/checkout@v4 + - name: Build Plugin + uses: redstrate/build-dalamud-plugin@main