Skip to content

custom log

custom log #94

Workflow file for this run

name: Compile TS/LESS
on:
push:
branches:
- main
- dev
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Compile
run: |
npm i -g typescript less less-plugin-clean-css
tsc
python3 compile-less.py
- name: Commit
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add smiggins/templates/js
git add smiggins/templates/css
git diff --cached --quiet || (git commit -m 'Compile TS/LESS' && git push)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}