Deploy Build Testing #228
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: Deploy Build Testing | |
on: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
deploy-build-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Git Clone Project | |
run: git clone https://github.com/laravel/laravel.git src | |
- name: Docker Version | |
run: docker version | |
- name: Docker Compose Settings | |
run: echo APP_BUILD_TARGET=deploy > .env | |
- name: Build Docker Images | |
run: docker compose build app |