Skip to content

Commit

Permalink
workflows: rename deploy.yml to hugo.yml
Browse files Browse the repository at this point in the history
Rename the workflow from deploy.yml to hugo.yml to be more descriptive
of what it is actually doing, given that it only really deploys when a
commit is pushed to the master (i.e. production) branch.

While we're at it, also fix a small typo messing up the HUGO_BASE_URL,
it should be botlabs-gg, not botlabs.gg.

Signed-off-by: Luca Zeuch <[email protected]>
  • Loading branch information
l-zeuch committed Jan 23, 2024
1 parent b15108d commit 6e742bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml → .github/workflows/hugo.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Deploy Hugo site to GH Pages
name: Hugo (CD)

on:
# Only deploy when it is accepted for production
Expand All @@ -18,7 +18,7 @@ concurrency:

env:
HUGO_CACHEDIR: /tmp/hugo_cache/
HUGO_BASE_URL: "https://botlabs.gg.github.io/yagpdb-docs-v2"
HUGO_BASE_URL: "https://botlabs-gg.github.io/yagpdb-docs-v2"

jobs:
build:
Expand Down

0 comments on commit 6e742bf

Please sign in to comment.