PHP CakePHP5 #17
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
# https://book.cakephp.org/5/en/installation.html | |
name: PHP CakePHP5 | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'php/cakephp5/**' | |
workflow_dispatch: | |
env: | |
PHP_VERSION: '8.2' | |
WORKING_DIRECTORY: php/cakephp5 | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build-cakephp5: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.PHP_VERSION }} | |
- name: Check if composer.json exists | |
id: check_files | |
uses: andstor/file-existence-action@v1 | |
with: | |
files: '${{ env.WORKING_DIRECTORY }}/composer.json' | |
# - name: Get Composer Cache Directory | |
# id: composer-cache | |
# if: steps.check_files.outputs.files_exists == 'true' | |
# run: | | |
# echo "::set-output name=dir::$(composer config cache-files-dir)" | |
# - name: Set up dependency caching for faster installs | |
# uses: actions/cache@v2 | |
# if: steps.check_files.outputs.files_exists == 'true' | |
# with: | |
# path: ${{ steps.composer-cache.outputs.dir }} | |
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
# restore-keys: | | |
# ${{ runner.os }}-composer- | |
- 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: Zip artifact for deployment | |
run: zip release.zip ./* -r | |
- name: Upload artifact for deployment job | |
uses: actions/upload-artifact@v3 | |
with: | |
name: php-app | |
path: ${{ env.WORKING_DIRECTORY }}/release.zip | |
deploy-cakephp5: | |
runs-on: ubuntu-latest | |
needs: build-cakephp5 | |
environment: | |
name: 'Production' | |
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | |
steps: | |
- name: Download artifact from build job | |
uses: actions/download-artifact@v3 | |
with: | |
name: php-app | |
- name: Az CLI Login | |
uses: azure/login@v2 | |
with: | |
client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
- name: Azure App Service Settings | |
uses: Azure/appservice-settings@v1 | |
with: | |
app-name: ${{ vars.AZURE_WEBAPP_NAME }}-cakephp | |
slot-name: 'Production' | |
app-settings-json: '[{"name":"SCM_DO_BUILD_DURING_DEPLOYMENT","value":"true","slotSetting":false}]' | |
- name: 'Deploy to Azure Web App' | |
id: deploy-to-webapp | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: ${{ vars.AZURE_WEBAPP_NAME }}-cakephp | |
slot-name: 'Production' | |
package: . | |
- name: Az CLI Logout | |
run: az logout |