ha-frontend/.github/workflows/demo_deployment.yaml

88 lines
2.3 KiB
YAML
Raw Normal View History

2022-12-08 17:17:28 +01:00
name: Demo deployment
on:
2022-12-08 17:17:28 +01:00
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
branches:
- dev
- master
2021-07-07 16:33:24 +02:00
env:
2022-07-19 11:39:08 +02:00
NODE_VERSION: 16
NODE_OPTIONS: --max_old_space_size=6144
2021-07-07 16:33:24 +02:00
jobs:
deploy_dev:
runs-on: ubuntu-latest
name: Demo Development
if: github.event_name != 'push' || github.ref != 'master'
2022-12-08 17:17:28 +01:00
environment:
name: Demo Development
2022-12-12 16:22:34 +01:00
url: ${{ steps.deploy.outputs.NETLIFY_LIVE_URL || steps.deploy.outputs.NETLIFY_URL }}
steps:
- name: Check out files from GitHub
uses: actions/checkout@v3.3.0
with:
ref: dev
2022-12-08 17:17:28 +01:00
2021-07-07 16:33:24 +02:00
- name: Set up Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3.6.0
with:
2021-07-07 16:33:24 +02:00
node-version: ${{ env.NODE_VERSION }}
cache: yarn
2022-12-08 17:17:28 +01:00
- name: Install dependencies
run: yarn install --immutable
2022-12-08 17:17:28 +01:00
- name: Build Demo
run: ./node_modules/.bin/gulp build-demo
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-12-08 17:17:28 +01:00
- name: Deploy to Netlify
2022-12-08 17:17:28 +01:00
id: deploy
uses: netlify/actions/cli@master
with:
args: deploy --dir=demo/dist --prod
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_DEMO_DEV_SITE_ID }}
deploy_master:
runs-on: ubuntu-latest
name: Demo Production
if: github.event_name == 'push' && github.ref == 'master'
environment:
name: Demo Production
url: ${{ steps.deploy.outputs.NETLIFY_LIVE_URL || steps.deploy.outputs.NETLIFY_URL }}
steps:
- name: Check out files from GitHub
uses: actions/checkout@v3.3.0
with:
ref: master
- name: Set up Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build Demo
run: ./node_modules/.bin/gulp build-demo
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy to Netlify
id: deploy
uses: netlify/actions/cli@master
with:
args: deploy --dir=demo/dist --prod
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_DEMO_SITE_ID }}