Skip to content

Added WittyPi 4 to webinterface and fixed timesync for WittyPi4 #56

Added WittyPi 4 to webinterface and fixed timesync for WittyPi4

Added WittyPi 4 to webinterface and fixed timesync for WittyPi4 #56

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1 # this installs node and npm for us
with:
node-version: '14.x'
- uses: actions/cache@v1 # this allows for re-using node_modules caching, making builds a bit faster.
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm install -g @angular/cli > /dev/null
- run: ng build --configuration production
# push the /dist folder to your repo
- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
default_author: github_actions
message: 'Updating /dist'
add: '.'