Skip to content

Commit

Permalink
Merge pull request #2 from gyanendra-baghel/fix/php-version
Browse files Browse the repository at this point in the history
fix: php version for github action
  • Loading branch information
gyanendra-baghel authored May 18, 2024
2 parents 7c08838 + 502a106 commit c7a8e1a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Setup PHP without any shared extensions except mbstring
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: none, mbstring

- name: 🚚 Get latest code
uses: actions/checkout@v4

Expand All @@ -20,4 +26,4 @@ jobs:
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
# local-dir: 'public' # Change this to the directory containing your Laravel app
server-dir: '/public_html/' # Change this to the directory on your server where you want to deploy
server-dir: '/public_html/' # Change this to the directory on your server where you want to deploy

0 comments on commit c7a8e1a

Please sign in to comment.