Skip to content

Add sample queries and more progress updates during installation #45

Add sample queries and more progress updates during installation

Add sample queries and more progress updates during installation #45

Workflow file for this run

name: Deploy to GitHub pages
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
pip install build
bash build.sh
- name: Prepare for deployment
run: |
cd build
git init
git add -A
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m 'deploy'
git branch -M main
git config --global --add safe.directory /github/workspace/build
- name: Deploy
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true
directory: ./build