From 55dbd84bf63ed4fb464ae550c077425371c01c8a Mon Sep 17 00:00:00 2001 From: Adrien Di Pasquale Date: Mon, 30 Dec 2024 11:29:02 +0100 Subject: [PATCH] wording improvements --- .github/workflows/deploy-guide.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-guide.yml b/.github/workflows/deploy-guide.yml index 46a6af8c..5415383a 100644 --- a/.github/workflows/deploy-guide.yml +++ b/.github/workflows/deploy-guide.yml @@ -7,7 +7,7 @@ on: jobs: build: runs-on: ubuntu-latest - name: Deploy Guide + name: Build & Upload static site steps: - uses: actions/checkout@v4 - name: Install Ruby & gems @@ -20,12 +20,12 @@ jobs: node-version: 18 - run: make build-guide deploy: + name: Deploy to GitHub Pages + runs-on: ubuntu-latest + needs: build environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build steps: - - name: Deploy to GitHub Pages - id: deployment + - id: deployment uses: actions/deploy-pages@v4