Skip to content

Commit

Permalink
Add build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joone committed Mar 27, 2024
1 parent 28661e0 commit ec50658
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: CI

on:
push:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
name: Checkout src repo
with:
path: src
fetch-depth: 0
ref: main
submodules: recursive

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x' # Or your desired version

- name: Install dependencies
run: npm install
working-directory: src

- name: Build
run: npm run build
working-directory: src

# Checkout destination repository
- name: Checkout dest repo
uses: actions/checkout@v2
with:
path: dest
fetch-depth: 0
ref: gh-pages

# Copy the built website files
- name: Copy website built from src/docs folder
working-directory: dest
run: |
rm -rf *
yes | cp -rf ../src/docs/* . # Replace '(output_folder)' with your build output dir
# Commit and push changes
- name: Commit website updates
working-directory: dest
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
git add .
git diff-index --quiet HEAD || git commit -m "Deploy website updates with GitHub Actions: ${GITHUB_SHA}"
git push origin gh-pages

0 comments on commit ec50658

Please sign in to comment.