Skip to content

Release 1.1.0: refreshed product screenshot and polished marketing site #7

Release 1.1.0: refreshed product screenshot and polished marketing site

Release 1.1.0: refreshed product screenshot and polished marketing site #7

Workflow file for this run

name: Deploy website to GitHub Pages
on:
push:
branches: [main]
paths:
- "site/**"
- "docs/logo.png"
- "docs/screenshot.jpg"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v7
- name: Prepare static site
run: |
mkdir -p _site/assets
cp -R site/. _site/
cp docs/logo.png docs/screenshot.jpg _site/assets/
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Upload static site
uses: actions/upload-pages-artifact@v4
with:
path: _site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4