Skip to content

Merge pull request #86 from oatear/feature/show-singles #61

Merge pull request #86 from oatear/feature/show-singles

Merge pull request #86 from oatear/feature/show-singles #61

name: Build and Deploy Angular
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
defaults:
run:
working-directory: ./cider-app
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: |
npm i
- name: Run build
run: |
npm run build:gh-pages
- name: Create 404 page
run: |
cp dist/cider/index.html dist/cider/404.html
- name: Archive build
if: success()
uses: actions/upload-artifact@v1
with:
name: deploy_dist
path: cider-app/dist
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Download build
uses: actions/download-artifact@v1
with:
name: deploy_dist
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: deploy_dist/cider