From 16307497a1742e90d1db49fb1bab97e6c25149d2 Mon Sep 17 00:00:00 2001 From: Fabian Wolf Date: Wed, 22 Feb 2023 17:40:21 +0100 Subject: [PATCH] Move to special build folder fix yaml --- .github/workflows/release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c14b01f72444..6f581d80f408 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,9 +16,11 @@ jobs: echo "VERSION=$VERSION" >> $GITHUB_ENV - name: Checkout uses: actions/checkout@v2 - path: 'build/' + with: + path: ./build - name: Cleanup directories - working-directory: ./build + with: + working-directory: ./build run: | rm -r .git rm -r .github/ @@ -34,8 +36,8 @@ jobs: rm captainhook.json - name: Install dependencies uses: php-actions/composer@v6 - working-directory: ./build with: + working-directory: ./build dev: no php_version: 7.4 version: 2.2.x