name: ๐Ÿ—๏ธ Build + Publish templates.json file on: workflow_dispatch: push: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: # Checkout repo - name: Checkout repository ๐Ÿ›Ž๏ธ uses: actions/checkout@v2 # Get current date-time (used for commit message) - name: Get Date ๐Ÿ“… id: date run: echo "::set-output name=date::$(date +'%d-%b-%Y')" # Downloads + installs Python (used for running gen scripts) - name: Set up Python ๐Ÿ uses: actions/setup-python@v2 with: python-version: '3.x' # Install contents of requirements.txt - name: Install dependencies ๐Ÿ“ฅ run: | python -m pip install --upgrade pip cd lib && pip install -r requirements.txt # The make command triggers all the Python scripts, generates output - name: Run make command ๐Ÿ”จ run: make # Commit and push the outputed JSON files - name: Commit and push generated files โคด๏ธ run: | git config --global user.name "Liss-Bot" git config --global user.email "alicia-gh-bot@mail.as93.net" git add . git commit -m "Updates templates (auto-generated, on ${{ steps.date.outputs.date }})" git push