Skip to content

Commit

Permalink
feat: add script to generate release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Dec 20, 2024
1 parent b253ed0 commit 22ba725
Show file tree
Hide file tree
Showing 16 changed files with 654 additions and 8,980 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: Deploy website to Pages
name: Deploy website to GitHub Pages

on:
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
Expand All @@ -27,21 +25,20 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
node-version: 18
python-version: "3.13"
- name: Install dependencies
run: npm ci
- name: Generate plugins.html
run: npm run build
run: python3 -m pip install markdown python-frontmatter
- name: Generate website
run: python3 scripts/generate-website.py
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: "."
path: "./output"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.venv
output
node_modules
File renamed without changes.
120 changes: 0 additions & 120 deletions ci/generate-plugins-html.js

This file was deleted.

51 changes: 0 additions & 51 deletions gpg/233EB58F67369B1C0F3D52C8748E4EFA8B940533.asc

This file was deleted.

Loading

0 comments on commit 22ba725

Please sign in to comment.