Skip to content

better error logging #52

better error logging

better error logging #52

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Push
if: ${{ github.event_name == 'push' }}
run: |
git config --global user.email "<>"
git config --global user.name "Build Bot"
git add download/ -f
git add upload/ -f
git commit -m "Build ${{ github.event.head_commit.message }}" || echo "Skipping commit"
git push