File tree Expand file tree Collapse file tree 2 files changed +35
-35
lines changed Expand file tree Collapse file tree 2 files changed +35
-35
lines changed Original file line number Diff line number Diff line change 1- name : ci
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 : Set up QEMU
17- uses : docker/setup-qemu-action@v1
18- -
19- name : Set up Docker Buildx
20- uses : docker/setup-buildx-action@v1
21- -
22- name : Login to DockerHub
23- uses : docker/login-action@v1
24- with :
25- username : ${{ secrets.DOCKERHUB_USERNAME }}
26- password : ${{ secrets.DOCKERHUB_TOKEN }}
27- -
28- name : Build and push
29- uses : docker/build-push-action@v2
30- with :
31- context : .
32- push : true
33- platforms : linux/amd64
34- tags : davikingcode/nginx-php-fpm:latest
1+ # name: ci
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: Set up QEMU
17+ # uses: docker/setup-qemu-action@v1
18+ # -
19+ # name: Set up Docker Buildx
20+ # uses: docker/setup-buildx-action@v1
21+ # -
22+ # name: Login to DockerHub
23+ # uses: docker/login-action@v1
24+ # with:
25+ # username: ${{ secrets.DOCKERHUB_USERNAME }}
26+ # password: ${{ secrets.DOCKERHUB_TOKEN }}
27+ # -
28+ # name: Build and push
29+ # uses: docker/build-push-action@v2
30+ # with:
31+ # context: .
32+ # push: true
33+ # platforms: linux/amd64
34+ # tags: davikingcode/nginx-php-fpm:latest
Original file line number Diff line number Diff line change 33on :
44 push :
55 tags :
6- - ' v*.*.*'
6+ - ' php8.*- v*.*.*'
77jobs :
88 test :
99 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments