Skip to content

Commit

Permalink
add github actions #1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Sep 8, 2024
1 parent 57a32f4 commit 74d4245
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
name: Build and test
on: [pull_request, push]
on:
push:
paths:
- "template/Makefile"
- "Makefile"
- "css/*"
- "package.json"
- "package-lock.json"
- "js/*"
- ".github/workflows/build.yaml"
branches:
- master
- devel
pull_request:
branches:
- master
- devel
jobs:
build:
runs-on: ubuntu-latest
Expand Down
51 changes: 51 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: build docs
run-name: ${{ github.actor }} building documentation 🚀
on:
push:
paths:
- "docs/**"
- ".github/workflows/docs.yaml"
branches:
- docusaurus
- master

permissions:
contents: write

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

defaults:
run:
working-directory: docs

jobs:
deploy:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: docs/package-lock.json

- name: Install dependencies
run: npm ci

- name: create version file
run: npm run version

- name: Build website
run: npm run build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.repository == 'jcubic/jquery.terminal-docs' || (github.repository == 'jcubic/jquery.terminal' && github.ref_name == 'master')}}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com

0 comments on commit 74d4245

Please sign in to comment.