Add GitHub workflow job names

This commit is contained in:
Will Faught
2024-06-05 21:43:01 -07:00
parent 8a4288de4c
commit 7a19de4cf6

View File

@@ -6,6 +6,7 @@ defaults:
shell: "bash" shell: "bash"
jobs: jobs:
build: build:
name: "Build"
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
steps: steps:
- name: "Checkout" - name: "Checkout"
@@ -47,6 +48,7 @@ jobs:
name: "github-pages" name: "github-pages"
url: "${{ steps.pages.outputs.base_url }}" url: "${{ steps.pages.outputs.base_url }}"
if: "github.ref == 'refs/heads/master'" if: "github.ref == 'refs/heads/master'"
name: "Deploy"
needs: "build" needs: "build"
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
steps: steps: