follow renaming of database system to database management system #22
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: build | |
permissions: | |
contents: write | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '.gitignore' | |
- '.dockerignore' | |
- '.github/dependabot.yml' | |
- 'Dockerfile' | |
- 'LICENSE' | |
- 'README.md' | |
- '.prettierrc' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
cache-dependency-path: '**/package.json' | |
# github-pages-deploy-action skips does not deploy .gitignore entries | |
- name: Install | |
run: | | |
npm install | |
sed -i "s|node_modules||" .gitignore | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: . | |
single-commit: true |