correct var access context

This commit is contained in:
Audrey Jensen 2024-08-14 09:43:47 -05:00
parent f859b7bfd4
commit afaefb7978
Signed by: audrey
SSH Key Fingerprint: SHA256:k+6b1AGMt7Q6374OfeAXUFNe0eFpsUt6eV4biffF06U

View File

@ -19,15 +19,15 @@ jobs:
- name: Copy files to project dir - name: Copy files to project dir
run: | run: |
mkdir ${{ env.PROD_DEPLOY_DIR }} mkdir ${{ var.PROD_DEPLOY_DIR }}
xcopy /E /I . ${{ env.PROD_DEPLOY_DIR }} xcopy /E /I . ${{ var.PROD_DEPLOY_DIR }}
- name: Update Composer Packages - name: Update Composer Packages
working-directory: ${{ env.PROD_DEPLOY_DIR }} working-directory: ${{ var.PROD_DEPLOY_DIR }}
run: composer update run: composer update
- name: Refresh Site Cache - name: Refresh Site Cache
working-directory: ${{ env.PROD_DEPLOY_DIR }} working-directory: ${{ var.PROD_DEPLOY_DIR }}
run: | run: |
php bin/console cache:clear php bin/console cache:clear
php bin/console cache:pool:prune php bin/console cache:pool:prune