Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
Merge branch 'v2'
Browse files Browse the repository at this point in the history
  • Loading branch information
daviwil committed Jun 8, 2023
2 parents 2e7af0e + c206d22 commit 6ccb1aa
Show file tree
Hide file tree
Showing 287 changed files with 11,948 additions and 1,399 deletions.
5 changes: 5 additions & 0 deletions .dir-locals.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
;;; Directory Local Variables -*- no-byte-compile: t -*-
;;; For more information see (info "(emacs) Directory Variables")

((nil . ((compile-command . "FORCE=true emacs -Q --batch -l ./publish.el --funcall dw/publish")))
(org-mode . ((org-link-file-path-type . relative))))
5 changes: 5 additions & 0 deletions .domains
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
systemcrafters.net
systemcrafters.cc
new.systemcrafters.net
systemcrafters-site.systemcrafters.codeberg.page
pages.systemcrafters-site.systemcrafters.codeberg.page
5 changes: 5 additions & 0 deletions .well-known/matrix/client
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"m.homeserver": {
"base_url": "https://matrix.systemcrafters.net"
}
}
3 changes: 3 additions & 0 deletions .well-known/matrix/server
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"m.server": "matrix.systemcrafters.net:8448"
}
17 changes: 17 additions & 0 deletions .woodpecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
pipeline:
build-web:
image: silex/emacs:ci
when:
branch: [ master ]
secrets: [ repo_token ]
commands: |
CI=true emacs --batch -l ./publish.el --funcall dw/publish
cd public
git init
git add -A
git config --global user.email "[email protected]"
git config --global user.name "David Wilson"
git commit -m "Publish systemcrafters.net"
git remote add upstream https://daviwil:[email protected]/SystemCrafters/systemcrafters-site.git
git push -f upstream HEAD:pages
Loading

0 comments on commit 6ccb1aa

Please sign in to comment.