From cdabf02472f9c2b69d4a833dbc5f1cc8d16517e5 Mon Sep 17 00:00:00 2001 From: Roman Pronskiy Date: Sat, 20 Apr 2024 23:43:31 +0200 Subject: [PATCH] Add php to workflow --- .github/workflows/release.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 33447c7..3c01637 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,10 +8,19 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: 8.3 + tools: composer:v2 + + - name: Install PHP deps + uses: ramsey/composer-install@v2 + - name: Build run: bash build.sh -# - name: Test -# run: cat Release.txt + - name: Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/')