2023-12-06 01:03:02 +00:00
|
|
|
name: Build and Deploy Website
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- develop
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-12-06 01:12:52 +00:00
|
|
|
name: Build Website
|
2023-12-06 01:03:02 +00:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
|
|
|
image: node:lts
|
|
|
|
steps:
|
2023-12-06 01:21:39 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-12-06 01:03:02 +00:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build English Version
|
|
|
|
run: npm run build
|
|
|
|
- name: Build German Version
|
|
|
|
run: npm run build:de
|
2023-12-06 01:21:39 +00:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: website
|
|
|
|
path: dist/
|