Add example code from other databases to Getting Started document #193
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
push: | |
branches: [ master ] | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Webpage | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y pandoc python3-pandocfilters make | |
pandoc --version | |
make page | |
- name: Deploy | |
if: github.repository == 'sgrif/diesel.rs-website' && github.event_name == 'push' | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: out # The folder the action should deploy. | |
clean: true | |
clean-exclude: | | |
CNAME |