2021-08-07 06:54:19 +08:00
|
|
|
name: Layered Preview Build
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2021-09-18 19:52:56 +08:00
|
|
|
env:
|
|
|
|
PR_NUMBER: ${{github.event.number}}
|
2021-08-07 06:54:19 +08:00
|
|
|
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:
|
2021-08-10 02:16:08 +08:00
|
|
|
name: previewbuild
|
2021-08-07 06:54:19 +08:00
|
|
|
path: element-web/webapp
|
|
|
|
# We'll only use this in a triggered job, then we're done with it
|
|
|
|
retention-days: 1
|
|
|
|
|