From ac85ab992158f65d86b47a65226bae10df842640 Mon Sep 17 00:00:00 2001 From: Christofer <77406318+csc530@users.noreply.github.com> Date: Sun, 10 Dec 2023 20:13:23 -0500 Subject: [PATCH] Update branchless.yml --- .github/workflows/branchless.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/branchless.yml b/.github/workflows/branchless.yml index b024225..2129b81 100644 --- a/.github/workflows/branchless.yml +++ b/.github/workflows/branchless.yml @@ -35,9 +35,13 @@ concurrency: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - build: + build-and-deploy: runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: - uses: actions/checkout@v4 with: @@ -70,16 +74,6 @@ jobs: name: docs path: docs/.vuepress/dist - # Single deploy job since we're just deploying - deploy: - # Add a dependency to the build job - needs: build - - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - name: Setup Pages uses: actions/configure-pages@v4 - name: Upload artifact