2022-05-02 15:59:11 +02:00
|
|
|
name: Deploying
|
2021-07-14 00:31:37 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Node.js
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2022-05-02 15:10:58 +02:00
|
|
|
node-version: 16
|
2021-07-14 00:31:37 +02:00
|
|
|
|
2021-07-14 00:33:02 +02:00
|
|
|
- name: Install Yarn packages
|
|
|
|
run: yarn install
|
2021-07-14 00:31:37 +02:00
|
|
|
|
|
|
|
- name: Build project
|
|
|
|
run: npm run build
|
|
|
|
|
|
|
|
- name: Upload production-ready build files
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: production-files
|
|
|
|
path: ./build
|
2022-05-02 15:59:11 +02:00
|
|
|
|
2021-07-14 00:31:37 +02:00
|
|
|
deploy:
|
|
|
|
name: Deploy
|
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Download artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: production-files
|
|
|
|
path: ./build
|
|
|
|
|
|
|
|
- name: Deploy to gh-pages
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2021-07-14 00:46:12 +02:00
|
|
|
publish_dir: ./build
|
2022-05-02 15:59:11 +02:00
|
|
|
cname: movie.squeezebox.dev
|