Skip to content

Commit ceb069f

Browse files
authored
Create php71.yml
1 parent 9e8c411 commit ceb069f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/php71.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: php-fpm 7.1
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
8+
jobs:
9+
docker:
10+
runs-on: ubuntu-latest
11+
steps:
12+
-
13+
name: Checkout
14+
uses: actions/checkout@v2
15+
-
16+
name: Login to DockerHub
17+
uses: docker/login-action@v1
18+
with:
19+
username: ${{ secrets.DOCKER_HUB_USER }}
20+
password: ${{ secrets.DOCKER_HUB_PWD }}
21+
-
22+
name: Build and push php7.1
23+
uses: docker/build-push-action@v2
24+
with:
25+
context: ./7.1
26+
push: true
27+
tags: shion/php-fpm:7.1

0 commit comments

Comments
 (0)