From 795a378fefab18b77b036a4dbdf0c06c2de3c1a9 Mon Sep 17 00:00:00 2001 From: napoleonlopez <74079958+napoleonlopez@users.noreply.github.com> Date: Sat, 4 Nov 2023 19:32:43 -0600 Subject: [PATCH 1/3] Add or update the Azure App Service build and deployment workflow config --- .github/workflows/master_udbvirtual.yml | 66 +++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 .github/workflows/master_udbvirtual.yml diff --git a/.github/workflows/master_udbvirtual.yml b/.github/workflows/master_udbvirtual.yml new file mode 100644 index 000000000..6946b3c9c --- /dev/null +++ b/.github/workflows/master_udbvirtual.yml @@ -0,0 +1,66 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and deploy PHP app to Azure Web App - UDBVirtual + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.0' + + - 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: 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: release.zip + + deploy: + runs-on: ubuntu-latest + needs: build + 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: Unzip artifact for deployment + run: unzip release.zip + + - name: 'Deploy to Azure Web App' + uses: azure/webapps-deploy@v2 + id: deploy-to-webapp + with: + app-name: 'UDBVirtual' + slot-name: 'Production' + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_9525C64FB7F340B19A69E4109E6097D9 }} + package: . From ba3de124cf82a471b9d7251d021995455c038272 Mon Sep 17 00:00:00 2001 From: napoleonlopez <74079958+napoleonlopez@users.noreply.github.com> Date: Sat, 4 Nov 2023 20:02:26 -0600 Subject: [PATCH 2/3] Update index.php --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 82966e27a..62c3801ec 100644 --- a/index.php +++ b/index.php @@ -1,3 +1,3 @@ Date: Sat, 4 Nov 2023 20:06:32 -0600 Subject: [PATCH 3/3] Update index.php --- index.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/index.php b/index.php index 62c3801ec..ffaad1a8b 100644 --- a/index.php +++ b/index.php @@ -1,3 +1,11 @@ - + +
+ +