Skip to content

Add blog post announcing Exasol driver (#21) #27

Add blog post announcing Exasol driver (#21)

Add blog post announcing Exasol driver (#21) #27

Workflow file for this run

name: Deploy Website
on:
push:
branches: ["main"]
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Generate OG images
run: |
pip install -r scripts/requirements.txt
python scripts/generate_og_images.py
- name: Build site
run: |
bundle exec jekyll build
- name: Upload built site as artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./_site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
permissions:
actions: read
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4