Skip to content

Create CONTRIBUTING.md #117

Create CONTRIBUTING.md

Create CONTRIBUTING.md #117

name: Continuous Deployment
on:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
name: Build & Deploy
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions/setup-node@v4
with:
# Version Spec of the version to use in SemVer notation.
# It also emits such aliases as lts, latest, nightly and canary builds
# Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node
node-version: 20
- name: Build
run: |
cd core
npm install
npm run build
cp dist/cv/browser/index.html dist/cv/browser/404.html
- name: Setup Pages
uses: actions/configure-pages@v3
with:
enablement: true
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./core/dist/cv/browser/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2