Compare commits
4 commits
8d92cdd518
...
a9435f9a41
Author | SHA1 | Date | |
---|---|---|---|
a9435f9a41 | |||
8a1690be26 | |||
ff7770f8e2 | |||
6e2e8d59ff |
4 changed files with 42 additions and 10 deletions
30
.forgejo/workflows/publish.yaml
Normal file
30
.forgejo/workflows/publish.yaml
Normal file
|
@ -0,0 +1,30 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
jekyll:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: jvconseil/jekyll-docker
|
||||
steps:
|
||||
- name: Checkout source
|
||||
uses: actions/checkout@v4
|
||||
- name: Checkout built site
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: pages
|
||||
path: _site
|
||||
- name: Setup cache directory
|
||||
run: mkdir .jekyll-cache
|
||||
- name: Install dependencies
|
||||
run: bundle install
|
||||
- name: Build the site
|
||||
run: jekyll build --trace
|
||||
- name: Publish Site
|
||||
run: |
|
||||
cd _site
|
||||
git config --global --add safe.directory ${{ env.GITHUB_WORKSPACE }}/_site
|
||||
git config user.name "Scribe [bot]"
|
||||
git config user.email "scribe@niblock.tech"
|
||||
git add -A .
|
||||
git status
|
||||
git commit -m "Automated Publish"
|
||||
git push
|
|
@ -22,7 +22,7 @@
|
|||
<span class="fa fa-bar-chart" aria-hidden="true"
|
||||
title="GoatCounter Statistics"</span>
|
||||
</a> |
|
||||
<a class="u-url" href="https://github.com/VagabondAzulien/VagabondAzulien.github.io"
|
||||
<a class="u-url" href="https://codeberg.org/VagabondAzulien/the-internet-vagabond-dot-com"
|
||||
aria-label="Source code repository for the site">
|
||||
<span class="fa fa-code" aria-hidden="true"
|
||||
title="Site Source Code"</span>
|
||||
|
@ -43,20 +43,22 @@
|
|||
<span class="fa fa-envelope-o" aria-hidden="true"
|
||||
title="Email bill at theinternetvagabond.com"</span>
|
||||
</a> |
|
||||
<a class="u-url" rel="me" href="https://matrix.to/#/@vagabondazulien:exp.farm"
|
||||
aria-label="Link to me on Matrix">
|
||||
<span class="fa fa-matrix-org " aria-hidden="true"
|
||||
<a class="u-url" rel="me"
|
||||
href="https://matrix.to/#/@vagabondazulien:matrix.org"
|
||||
aria-label="Speak with me on Matrix">
|
||||
<span class="fa fa-matrix-org" aria-hidden="true"
|
||||
title="Speak with me on Matrix"</span>
|
||||
</a> |
|
||||
<a class="u-url" rel="me"
|
||||
href="https://mastodon.social/@azulien"
|
||||
aria-label="Find me on the Fediverse">
|
||||
<span class="fa fa-mastodon" aria-hidden="true"
|
||||
title="Find me on the Fediverse"</span>
|
||||
</a> |
|
||||
<a class="u-url" rel="me" href="https://www.twitch.tv/vagabondazulien/profile"
|
||||
aria-label="Link to my Twitch channel">
|
||||
<span class="fa fa-twitch " aria-hidden="true"
|
||||
title="My Twitch channel"</span>
|
||||
</a> |
|
||||
<a class="u-url" rel="me" href="https://github.com/VagabondAzulien"
|
||||
aria-label="Link to my GitHub profile">
|
||||
<span class="fa fa-github" aria-hidden="true"
|
||||
title="My GitHub profile"</span>
|
||||
</a>
|
||||
</div>
|
||||
<p>
|
||||
|
|
|
@ -144,6 +144,6 @@ quietly in the background, without having to start up applications. The biggest
|
|||
problem is that it doesn't automatically update to the newest version of
|
||||
Syncthing. It's also a bit involved to setup. To that end, I've written a tool
|
||||
to help with setup: [Steam Deck Syncthing
|
||||
Setup](https://gitlab.com/VagabondAzulien/steam-deck-syncthing). I'm still
|
||||
Setup](https://codeberg.org/VagabondAzulien/steam-deck-syncthing). I'm still
|
||||
finishing it up, but I intend to make use of it to keep my version of Syncthing
|
||||
up-to-date. If you use it, let me know!
|
||||
|
|
Loading…
Reference in a new issue