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/')