Rename GitHub action jobs

Renames the GitHub action "Job" entries to make them distinguishable.
The "Job" entry is used to specify which actions to require before
merging. Therefore, giving them distinct names is important.
diff --git a/.github/workflows/build-site.yml b/.github/workflows/build-site.yml
index 714ce58..3559139 100644
--- a/.github/workflows/build-site.yml
+++ b/.github/workflows/build-site.yml
@@ -8,7 +8,7 @@
   pull_request:
 
 jobs:
-  build:
+  build-site:
     name: Build Site
     runs-on: ubuntu-latest
     defaults:
diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml
index 8de3f77..185239a 100644
--- a/.github/workflows/deploy-site.yml
+++ b/.github/workflows/deploy-site.yml
@@ -23,7 +23,7 @@
 
 
 jobs:
-  build:
+  deploy-site:
     name: Build & Deploy Site
     runs-on: ubuntu-latest
     defaults:
diff --git a/.github/workflows/recreate-site-branch.yml b/.github/workflows/recreate-site-branch.yml
index a64b6c8..5a1182f 100644
--- a/.github/workflows/recreate-site-branch.yml
+++ b/.github/workflows/recreate-site-branch.yml
@@ -13,7 +13,7 @@
 
 
 jobs:
-  build:
+  recreate-site:
     name: Build & Deploy Site
     runs-on: ubuntu-latest
     defaults: