refactor(init): refactor code for digthread from devsecops #1
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
name: Deploy to GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- ".github/**" | |
concurrency: | |
group: pages | |
cancel-in-progress: false | |
jobs: | |
build-and-deploy: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Setup Node 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install Dependencies ⚙️ | |
run: | | |
npm ci | |
- name: Build Application 🏗️ | |
run: | | |
npm run build | |
- name: Deploy 🚀 | |
if: success() | |
uses: crazy-max/ghaction-github-pages@v3 | |
with: | |
target_branch: gh-pages | |
build_dir: docs/.vitepress/dist | |
commit_message: 'chore(deploy): deploy docs Site to GitHub Pages' | |
keep_history: false | |
jekyll: false | |
fqdn: digthread.aiaadeic.org | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |