From 40425ca36df215f1657028b5bd2fefbc3959127d Mon Sep 17 00:00:00 2001 From: Klemek Date: Wed, 3 Feb 2021 16:17:35 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..ce58ab4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,29 @@ +name: Generate usinenX.klc + +on: + push: + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up Python 3.7 + uses: actions/setup-python@v2 + with: + python-version: 3.7 + + - name: Build + run: python ./build.py + + - name: Commit and Push + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add -A + git commit -m "automated build" + git push