Skip to content

Commit 1d76953

Browse files
committed
feat Deploy build testing
1 parent 31504ff commit 1d76953

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: deploy-build-testing
2+
3+
on:
4+
pull_request:
5+
schedule:
6+
- cron: '0 0 * * *'
7+
8+
jobs:
9+
docker-build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Git Clone Project
16+
run: git clone https://github.com/laravel/laravel.git src
17+
18+
- name: Docker Version
19+
run: docker version
20+
21+
- name: Settings
22+
run: echo APP_BUILD_TARGET=deploy > .env
23+
24+
- name: Build Docker Images
25+
run: docker compose build app

0 commit comments

Comments
 (0)