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 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