Skip to content

Commit

Permalink
Merge pull request #475 from bcgov/feat/php-8.2
Browse files Browse the repository at this point in the history
Upgrading PHP-8.1 to PHP-8.2
  • Loading branch information
kardamk authored May 10, 2024
2 parents e31ed8a + 96e5b91 commit a94622d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
export DB_TYPE=mysql
export DB_PORT=3306
git clone --branch 10.1.x-php8.1 https://github.com/drupalwxt/docker-scaffold.git docker
git clone --branch 10.2.x-php8.2 https://github.com/drupalwxt/docker-scaffold.git docker
make build
docker compose -f docker-compose.ci.yml up -d
docker ps -a
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
export DB_TYPE=mysql
export DB_PORT=3306
git clone --branch 10.1.x-php8.1 https://github.com/drupalwxt/docker-scaffold.git docker
git clone --branch 10.2.x-php8.2 https://github.com/drupalwxt/docker-scaffold.git docker
make build
docker compose -f docker-compose.ci.yml up -d
docker ps -a
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
run: echo "GITHUB_REFERENCE=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_ENV

- name: Login to Container Registry 🐸
uses: docker/login-action@v2
uses: docker/login-action@v2
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ env.CONTAINER_REGISTRY_USERNAME }}
Expand All @@ -62,6 +62,7 @@ jobs:
- name: Build and push PHP-FPM 🐳
run: |
docker tag mfin-data-catalogue-web:latest ${{ env.CONTAINER_REGISTRY }}/${{ env.CONTAINER_IMAGE_NAME }}:${{ env.GITHUB_REFERENCE }}
docker tag mfin-data-catalogue-web:latest ${{ env.CONTAINER_REGISTRY }}/${{ env.CONTAINER_IMAGE_NAME }}:
docker push ${{ env.CONTAINER_REGISTRY }}/${{ env.CONTAINER_IMAGE_NAME }}:${{ env.GITHUB_REFERENCE }}
- name: Build and push Nginx 🐳
Expand Down

0 comments on commit a94622d

Please sign in to comment.