Build and push to gh-pages #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Build and push to gh-pages | |
on: | |
workflow_run: | |
workflows: ["Node.js CI"] | |
types: [completed] | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_dispatch }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure git | |
run: | | |
git config --global user.name "github-actions" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Deploy to gh pages | |
run: | | |
npx ng deploy \ | |
--repo=https://${{ secrets.GH_TOKEN }}@github.com/chrispyles/contrastinator.git \ | |
--base-href="/contrastinator/" | |
--silent | |
env: | |
CI: true |