-
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.
* WIP: Experimental GH Pages publishing * fix: Use a PAT to deploy cross-repo, sign commits * fix: Don't attempt to toggle signing for local repo, which doesn't exist * feat: Switch to aptly action v2, prep for release o11n * fix: Try to get README.md to render as index.html * fix: Better conditionals * fix: Correct by broken-ass logic * fix: Work around GitHub being an ass * chore: Test backporting logic * refactor: Switch testing to base from a repo snapshot instead of debs * feat: Flip to go-live values. Will fail to run until upstream PR is in.
- Loading branch information
Showing
11 changed files
with
116 additions
and
62 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
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 |
---|---|---|
|
@@ -5,4 +5,6 @@ | |
*.pid | ||
*.yaml | ||
*.socket | ||
*.zip | ||
ssh_ed25519* | ||
snapshot/ |
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
Empty file.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
deb [signed-by=/etc/apt/trusted.gpg.d/kanidm_ppa.asc] http://10.0.2.2:%MIRROR_PORT% %VERSION_CODENAME% stable |
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
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
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,12 @@ | ||
#!/bin/bash | ||
|
||
set -eu | ||
|
||
MIRROR_PORT="${MIRROR_PORT:-31625}" | ||
|
||
zip=$(readlink -f ${1?}) | ||
|
||
mkdir -p snapshot && cd snapshot | ||
unzip -o "$zip" | ||
|
||
python3 -m http.server -b 127.0.0.1 "$MIRROR_PORT" -d . |
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
This file was deleted.
Oops, something went wrong.