From 3aefe2f03ed1b3468a6991c39ceec22d2208ea4a Mon Sep 17 00:00:00 2001 From: 5idereal Date: Sat, 28 Oct 2023 14:38:21 +0800 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..9b5c53e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Build + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: Build + run: python ./build.py + - name: Release + uses: softprops/action-gh-release@v1 + with: + files: ./build/releases/*.aseprite-extension