11 Commits

Author SHA1 Message Date
agresdominik 2f6db88acb Merge pull request #6 from agresdominik/ui-fix
fix phone ui wrap
2026-06-22 21:58:30 +02:00
agresdominik bfe4ec756d Merge pull request #4 from agresdominik/dependabot/github_actions/appleboy/ssh-action-1.2.5
Bump appleboy/ssh-action from 0.1.9 to 1.2.5
2026-06-22 21:49:24 +02:00
agresdominik 70ed5bc629 Merge pull request #5 from agresdominik/cleanup
remove build step on push on main
2026-06-22 21:46:58 +02:00
dependabot[bot] 07b2f7b031 Bump appleboy/ssh-action from 0.1.9 to 1.2.5
Bumps [appleboy/ssh-action](https://github.com/appleboy/ssh-action) from 0.1.9 to 1.2.5.
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Commits](https://github.com/appleboy/ssh-action/compare/v0.1.9...v1.2.5)

---
updated-dependencies:
- dependency-name: appleboy/ssh-action
  dependency-version: 1.2.5
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-22 19:46:37 +00:00
agresdominik dbfe277eb0 remove build step on push on main 2026-06-22 21:45:40 +02:00
agresdominik 971c6c9f97 Merge pull request #3 from agresdominik/dependabot/github_actions/actions/checkout-7
Bump actions/checkout from 3 to 7
2026-06-22 21:44:46 +02:00
dependabot[bot] 399a8cb73d Bump actions/checkout from 3 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-22 19:27:05 +00:00
agresdominik e9b9656ce0 Merge pull request #2 from agresdominik/cleanup
Cleanup
2026-06-22 21:26:38 +02:00
agresdominik 2afac7f49a add google token 2026-06-22 21:25:10 +02:00
agresdominik 04e9e4f6b8 Stop ignoring google verification file 2026-06-22 21:24:31 +02:00
agresdominik c4cababe98 cleanup 2026-06-22 21:04:44 +02:00
7 changed files with 38 additions and 5 deletions
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
# Same check as CI: abort the commit if Hugo can't build cleanly.
make build || exit 1
make clean
+6
View File
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
+20
View File
@@ -0,0 +1,20 @@
name: Build Check
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: peaceiris/actions-hugo@v3
with:
hugo-version: "0.152.2"
extended: true
# Fails the run on any Hugo error (broken templates, shortcodes, refs).
- run: hugo --gc --minify --panicOnWarning
working-directory: blog
+4 -2
View File
@@ -11,16 +11,18 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v7
- name: Deploy to VPS - name: Deploy to VPS
uses: appleboy/ssh-action@v0.1.9 uses: appleboy/ssh-action@v1.2.5
with: with:
host: ${{ secrets.VPS_HOST }} host: ${{ secrets.VPS_HOST }}
username: agres username: agres
key: ${{ secrets.VPS_SSH_KEY }} key: ${{ secrets.VPS_SSH_KEY }}
port: 22 port: 22
script: | script: |
set -e
# Pull latest changes # Pull latest changes
cd /home/agres/website cd /home/agres/website
git pull origin main git pull origin main
-3
View File
@@ -1,6 +1,3 @@
# Private Google Datei
googleeb4005177cc2703c.html
# public folder # public folder
public/ public/
+3
View File
@@ -6,6 +6,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Site.Params.browserTitle }} :: {{ .Title }}</title> <title>{{ .Site.Params.browserTitle }} :: {{ .Title }}</title>
{{ with .Description }}<meta name="description" content="{{ . }}">{{ end }} {{ with .Description }}<meta name="description" content="{{ . }}">{{ end }}
<link rel="canonical" href="{{ .Permalink }}">
{{ range .AllTranslations }}<link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}">
{{ end }}
<link rel="icon" type="image/svg+xml" href="/favicon.svg"> <link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" href="/favicon.ico" sizes="any"> <link rel="icon" href="/favicon.ico" sizes="any">
+1
View File
@@ -0,0 +1 @@
google-site-verification: googleeb4005177cc2703c.html