From 711482888c92e9afdb272db1d800408ca2809d43 Mon Sep 17 00:00:00 2001 From: actionless Date: Sun, 26 Jun 2022 21:42:26 +0200 Subject: [PATCH] fix(gh: www): awesomewm checkout dir --- .github/workflows/www.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/www.yml b/.github/workflows/www.yml index 32599c7..586a1f7 100644 --- a/.github/workflows/www.yml +++ b/.github/workflows/www.yml @@ -121,14 +121,14 @@ jobs: set -e git clone \ https://${APIDOC_TOKEN}@github.com/awesomeWM/awesomeWM.github.io \ - "${{ github.workspace }}/build" 2>&1 | sed "s/$APIDOC_TOKEN/APIDOC_TOKEN/g" + "${{ github.workspace }}/src" 2>&1 | sed "s/$APIDOC_TOKEN/APIDOC_TOKEN/g" if [ "${{ github.event_name }}" != 'pull_request' ]; then branch="${{ github.head_ref || github.ref_name }} " else branch="pr-${{ steps.pr.outputs.pull_request_number }}" fi if [ "$branch" != master ]; then - cd "${{ github.workspace }}/build" + cd "${{ github.workspace }}/src" if ! git checkout -b "$branch" "origin/$branch"; then git checkout -b "$branch" fi