From 6f0fcdf6fcc9d588a0f1e0f3a46fe6d20871aaa8 Mon Sep 17 00:00:00 2001 From: RedBigz Date: Wed, 12 Jun 2024 18:15:58 +1000 Subject: [PATCH] Add workflow --- .github/workflows/build.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..c0be750 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,24 @@ +# This defines the name of the workflow as it will appear in the "Actions" tab of the GitHub repository. +name: 'Link Checker: All English' + +on: + workflow_dispatch: + push: + branches: + - main + pull_request: + +permissions: + contents: read + pull-requests: read + +# The `jobs` key groups together all the jobs that run in the workflow file. +jobs: + package: + name: "Package as Thunderstore ZIP" + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Run Packager + run: ./build.sh \ No newline at end of file