From bd928b73051b9e031ea3d5bcc945c10fb22ea1b0 Mon Sep 17 00:00:00 2001 From: oxmc <67136658+oxmc@users.noreply.github.com> Date: Sat, 31 Dec 2022 05:00:05 -0800 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..5eaa430 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: run-script + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + workflow_dispatch: {} + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: script + run: QuestAssetGenerator.py -a ${{ secrets.GITHUB_TOKEN }} + shell: python