- Added an extra README file detailing what the scripts are for - The scripts now display a warning and a prompt before requiring user confirmation to continue - The system install commands are only executed in CI environments (ninja and cmake being installed as root without checking for the environment was a leftover from a previous non-GitHub based CI setup)
22 lines
408 B
YAML
22 lines
408 B
YAML
name: Web
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-web:
|
|
name: build-web
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2.0.0
|
|
- name: Run build script
|
|
run: |
|
|
cd build/web && printf "y" | ./build.sh continuous
|
|
- uses: actions/upload-artifact@v1.0.0
|
|
with:
|
|
name: filament-web
|
|
path: out/filament-release-web.tgz
|