protect .env, don't trigger ci on PR #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHP Composer | |
on: | |
push: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
- name: Check if composer.json exists | |
id: check_files | |
uses: andstor/file-existence-action@v1 | |
with: | |
files: 'composer.json' | |
- name: Run composer install if composer.json exists | |
if: steps.check_files.outputs.files_exists == 'true' | |
run: composer validate --no-check-publish && composer install --prefer-dist --no-progress | |
- name: SFTP Deploy | |
uses: Dylan700/sftp-upload-action@latest | |
with: | |
server: ${{ secrets.SFTP_HOST }} | |
username: ${{ secrets.SFTP_USER }} | |
password: ${{ secrets.SFTP_PASSWORD }} | |
uploads: | | |
./ => ./ | |
ignore: | | |
.git* | |
composer.* | |
README.MD | |