Skip to content

Commit

Permalink
Add in build.yml file for GH pages, remove old Jekyll config. Modify …
Browse files Browse the repository at this point in the history
…roadmap.md.
  • Loading branch information
jeremiah committed Feb 12, 2025
1 parent a3345dd commit 7752e02
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Eleventy
on:
push:
branches:
- gh-pages

jobs:
build:
runs-on: debian-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js current
uses: actions/setup-node@v3
with:
node-version: current

- name: Install dependencies & build
run: |
npm ci
npm run build
- name: Deploy
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
#publish_dir is the folder on the docker instance which eleventy builds the pages to.
#it is not the docs folder in the repository
publish_dir: dist
#publish_branch is the branch in the repository.
#this is where you need to point GitHub pages
publish_branch: gh-pages
1 change: 0 additions & 1 deletion docs/_config.yml

This file was deleted.

6 changes: 4 additions & 2 deletions docs/roadmap.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Roadmap

SPDX-License-Identifier: CC-BY-4.0

This is the roadmap of spdxl. The current plan is to
recursively search directories looking for all files.

Expand Down Expand Up @@ -46,3 +44,7 @@ Do we want to query Debian-sources to see if we can find our package and check t

Create a database in this format?
filename | SHA256 sum | license guestimate

### Copyright and license
Copyright &copy; 2025 Jeremiah C. Foster <[email protected]>
SPDX-License-Identifier: CC-BY-4.0

0 comments on commit 7752e02

Please sign in to comment.