So we don't need netflify to sit there building the develop branch for no reason. Also it will comment with the URL rather than having to dig it out of the checks. Upload part not tested yet.
20 lines
650 B
YAML
20 lines
650 B
YAML
name: Layered Preview Build
|
|
on:
|
|
pull_request:
|
|
branches: [develop]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build
|
|
run: scripts/ci/layered.sh && cd element-web && cp element.io/develop/config.json config.json && CI_PACKAGE=true yarn build
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Preview Build
|
|
path: element-web/webapp
|
|
# We'll only use this in a triggered job, then we're done with it
|
|
retention-days: 1
|
|
|