mirror of
https://github.com/jbowdre/capsule.git
synced 2024-11-09 16:32:18 +00:00
generate alternative feed.xml for https
This commit is contained in:
parent
e2bdb746c7
commit
131014e2cf
3 changed files with 12 additions and 1 deletions
2
.github/workflows/deploy-gemini.yml
vendored
2
.github/workflows/deploy-gemini.yml
vendored
|
@ -29,6 +29,8 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: Gempost build
|
||||
run: gempost build
|
||||
- name: Generate https feed
|
||||
run: ./generate-https-feed.sh
|
||||
- name: Connect to Tailscale
|
||||
uses: tailscale/github-action@v2
|
||||
with:
|
||||
|
|
8
generate-https-feed.sh
Executable file
8
generate-https-feed.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
set -eu
|
||||
|
||||
INFEED="public/gemlog/atom.xml"
|
||||
OUTFEED="public/gemlog/atom-https.xml"
|
||||
|
||||
# read INFILE, replace gemini:// with https:// and write to OUTFILE
|
||||
sed 's/gemini:\/\//https:\/\//g' $INFEED > $OUTFEED
|
|
@ -14,7 +14,8 @@
|
|||
{% endfor %}
|
||||
─────
|
||||
|
||||
=> {{ feed.feed_url }} [atom feed]
|
||||
=> {{ feed.feed_url }} [gemini feed]
|
||||
=> atom-https.xml [https feed]
|
||||
=> {{ feed.capsule_url }} [home]
|
||||
|
||||
{% if feed.rights -%}
|
||||
|
|
Loading…
Reference in a new issue