Skip to content

Commit

Permalink
Add php to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pronskiy committed Apr 20, 2024
1 parent 661a8bd commit cdabf02
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/')
Expand Down

0 comments on commit cdabf02

Please sign in to comment.