Skip to content

Merge pull request #194 from Serdaro/fix-logo #196

Merge pull request #194 from Serdaro/fix-logo

Merge pull request #194 from Serdaro/fix-logo #196

Workflow file for this run

# This workflow builds the UI and commits the ui-bundle.zip file
# When the file is attached to a release, the documentation site can use it as its UI
name: Publish
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10
- name: Bundle UI
run: |
npm i
gulp bundle
- name: Commit files
run: |
git config --global user.name 'JakeSCahill'
git config --global user.email '[email protected]'
git add -f build
git commit -m "Bundle UI"
git push origin