Compare commits

...

2 Commits

Author SHA1 Message Date
d8d8154fda Update client/index.html
chore: set site title to title case
2025-08-19 10:53:21 -04:00
02ca6a3072 Update .gitea/workflows/deploy.yml
fix: escape the deploy key var from being replaced
2025-08-19 10:50:45 -04:00
2 changed files with 2 additions and 2 deletions

View File

@ -19,4 +19,4 @@ jobs:
uses: dokku/github-action@master uses: dokku/github-action@master
with: with:
git_remote_url: 'ssh://dokku@192.168.1.2:22/$REPO_NAME' git_remote_url: 'ssh://dokku@192.168.1.2:22/$REPO_NAME'
ssh_private_key: ${{ secrets.DOKKU_DEPLOY_KEY }} ssh_private_key: $${{ secrets.DOKKU_DEPLOY_KEY }}

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/src/assets/img/L10n.png" /> <link rel="icon" type="image/png" href="/src/assets/img/L10n.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>$REPO_NAME</title> <title>$REPO_NAME_TITLE</title>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>