diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 4e5b345b..a0f4bd14 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -27,7 +27,7 @@ concurrency: jobs: # Build job - website: + website-build: runs-on: ubuntu-latest env: BUNDLE_GEMFILE: ${{ github.workspace }}/docs/Gemfile @@ -58,12 +58,12 @@ jobs: path: docs/_site # Deployment job - deploy: + website-deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest - needs: build + needs: website-build steps: - name: Deploy to GitHub Pages id: deployment