Yet another pipeline fix, updated welcome message and linked the upstream project that made this blog possible
This commit is contained in:
parent
9e2fe58ce8
commit
e4a803aad5
3 changed files with 7 additions and 7 deletions
|
|
@ -50,7 +50,7 @@ jobs:
|
||||||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
- name: Push
|
- name: Push
|
||||||
run: |
|
run: |
|
||||||
rsync -avz -e "ssh -p ${{ secrets.SERVER_PORT }}" \
|
rsync -avz -e "ssh -p ${{ secrets.SERVER_PORT }} -o StrictHostKeyChecking=no" \
|
||||||
--delete ./dist/ \
|
--delete ./dist/ \
|
||||||
${{ secrets.SERVER_USER }}@${{ secrets.SERVER_IP }}:${{ vars.DESTINATION }}
|
${{ secrets.SERVER_USER }}@${{ secrets.SERVER_IP }}:${{ vars.DESTINATION }}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
Simplement le code source de mon blog.
|
Simplement le code source de mon blog.
|
||||||
|
|
||||||
Une version légèrement modifiée du thème AstroPaper pour Astro.
|
Une version légèrement modifiée du thème [AstroPaper](https://github.com/satnaing/astro-paper) pour Astro.
|
||||||
|
|
||||||
Voilà.
|
Voilà.
|
||||||
|
|
|
||||||
|
|
@ -58,12 +58,12 @@ const recentPosts = sortedPosts.filter(({ data }) => !data.featured);
|
||||||
<br />
|
<br />
|
||||||
Aussi si vous comptez me faire une quelconque remarque concernant la pertinence
|
Aussi si vous comptez me faire une quelconque remarque concernant la pertinence
|
||||||
de mon propos ou sur le nom hasardeux de ce blog, je vous redirigerai vers
|
de mon propos ou sur le nom hasardeux de ce blog, je vous redirigerai vers
|
||||||
ma secrétaire à qui vous pourrez vous confier sans crainte. ->
|
le service plaintes qui saura être à votre écoute. ->
|
||||||
<LinkButton
|
<LinkButton
|
||||||
class="underline decoration-dashed underline-offset-4 hover:text-accent"
|
class="underline decoration-dashed underline-offset-4 hover:text-accent"
|
||||||
href="https://openai.com"
|
href="https://openai.com"
|
||||||
>
|
>
|
||||||
Faire connaissance
|
Se plaindre
|
||||||
</LinkButton>
|
</LinkButton>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
|
|
@ -75,16 +75,16 @@ const recentPosts = sortedPosts.filter(({ data }) => !data.featured);
|
||||||
class="underline decoration-dashed underline-offset-4 hover:text-accent"
|
class="underline decoration-dashed underline-offset-4 hover:text-accent"
|
||||||
href="https://forge.oblic-parallels.fr/guillm/dotfiles"
|
href="https://forge.oblic-parallels.fr/guillm/dotfiles"
|
||||||
>
|
>
|
||||||
https://forge.oblic-parallels.fr/guillm/dotfiles.
|
https://forge.oblic-parallels.fr/guillm/dotfiles
|
||||||
</LinkButton>
|
</LinkButton>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<b>Soyez le bienvenu !</b>
|
<b>Soyez le·a bienvenu·e !</b>
|
||||||
</p>
|
</p>
|
||||||
{
|
{
|
||||||
// only display if at least one social link is enabled
|
// only display if at lenvenueast one social link is enabled
|
||||||
SOCIALS.length > 0 && (
|
SOCIALS.length > 0 && (
|
||||||
<div class="mt-4 flex flex-col sm:flex-row sm:items-center">
|
<div class="mt-4 flex flex-col sm:flex-row sm:items-center">
|
||||||
<div class="mr-2 mb-1 whitespace-nowrap sm:mb-0">Social Links:</div>
|
<div class="mr-2 mb-1 whitespace-nowrap sm:mb-0">Social Links:</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue