Update php:8.3-apache Docker digest to 77937b9 #3401
Workflow file for this run
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: backend | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "backend/**" | |
- ".github/workflows/backend.yml" | |
jobs: | |
backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: mongodb-1.18.0 | |
- run: docker compose up -d database | |
working-directory: backend | |
- run: composer install -n --prefer-dist | |
working-directory: backend | |
- run: php artisan test | |
working-directory: backend | |
env: | |
INTERN_GOOGLE_API_KEY: ${{ secrets.INTERN_GOOGLE_API_KEY }} | |
- name: Build container | |
id: docker_build | |
uses: docker/build-push-action@v6 | |
with: | |
context: backend | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: blindern/intern-backend:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Deploy | |
if: github.ref == 'refs/heads/main' | |
run: | | |
curl --fail -L -i -H "authorization: bearer $DEPLOYER_TOKEN" -H "content-type: application/json" -X POST https://deployer.foreningenbs.no/deploy -d ' | |
{ | |
"service": "intern", | |
"attributes": { | |
"backend_image": "blindern/intern-backend@${{ steps.docker_build.outputs.digest }}" | |
} | |
}' | |
env: | |
DEPLOYER_TOKEN: ${{ secrets.DEPLOYER_TOKEN }} |