diff --git a/content/blog/setting-up-gitea-actions-with-tailscale/gitea-runners.png b/content/blog/setting-up-gitea-actions-with-tailscale/gitea-runners.png deleted file mode 100644 index 5935cd54..00000000 Binary files a/content/blog/setting-up-gitea-actions-with-tailscale/gitea-runners.png and /dev/null differ diff --git a/content/blog/setting-up-gitea-actions-with-tailscale/gitea-workflow.png b/content/blog/setting-up-gitea-actions-with-tailscale/gitea-workflow.png index 0d799795..fd523f24 100644 Binary files a/content/blog/setting-up-gitea-actions-with-tailscale/gitea-workflow.png and b/content/blog/setting-up-gitea-actions-with-tailscale/gitea-workflow.png differ diff --git a/content/blog/setting-up-gitea-actions-with-tailscale/index.md b/content/blog/setting-up-gitea-actions-with-tailscale/index.md index 60ccb01f..5174d918 100644 --- a/content/blog/setting-up-gitea-actions-with-tailscale/index.md +++ b/content/blog/setting-up-gitea-actions-with-tailscale/index.md @@ -109,8 +109,8 @@ I discovered some themes for gitea [here](https://git.sainnhe.dev/sainnhe/gitea- I added the theme by cloning [theme-gruvbox-auto.css](https://git.sainnhe.dev/sainnhe/gitea-themes/raw/branch/master/dist/theme-gruvbox-auto.css) into `./data/gitea/public/assets/css`. I then added the following to `environment` in `docker-compose.yml`: ```yaml -- GITEA__ui__DEFAULT_THEME=gruvbox-auto -- GITEA__ui__THEMES=gruvbox-auto +- GITEA__ui__DEFAULT_THEME=palenight +- GITEA__ui__THEMES=palenight ``` After restarting the gitea instance, the default theme was applied. @@ -121,8 +121,6 @@ I installed the runner by [following the docs](https://docs.gitea.com/usage/acti After registering this runner and starting the daemon, the runner appeared in `/admin/actions/runners`. I added two other runners to help with parallelization. -![image](gitea-runners.png) - ## Running a workflow Now it's time start running some automation. I used the [demo workflow](https://docs.gitea.com/usage/actions/quickstart#use-actions) as a starting point to verify that the runner is executing workflows.