-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add in build.yml file for GH pages, remove old Jekyll config. Modify …
…roadmap.md.
- Loading branch information
Showing
3 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
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
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 |
This file was deleted.
Oops, something went wrong.
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
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. | ||
|
||
|
@@ -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 © 2025 Jeremiah C. Foster <[email protected]> | ||
SPDX-License-Identifier: CC-BY-4.0 |