File tree Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Original file line number Diff line number Diff line change 10
10
name : Continuous Integration
11
11
12
12
jobs :
13
- docker :
14
- name : Docker Build & Push
15
- runs-on : ubuntu-latest
16
- steps :
17
- - name : Docker meta
18
- id : meta
19
- uses : docker/metadata-action@v4
20
- with :
21
- images : |
22
- parseable/parseable
23
- tags : |
24
- type=sha
25
- - name : Set up QEMU
26
- uses : docker/setup-qemu-action@v2
27
- - name : Set up Docker Buildx
28
- uses : docker/setup-buildx-action@v2
29
- - name : Login to DockerHub
30
- uses : docker/login-action@v2
31
- with :
32
- username : ${{ secrets.DOCKERHUB_USERNAME }}
33
- password : ${{ secrets.DOCKERHUB_TOKEN }}
34
- - name : Build and push
35
- uses : docker/build-push-action@v3
36
- with :
37
- push : true
38
- tags : ${{ steps.meta.outputs.tags }}
13
+ # docker:
14
+ # name: Docker Build & Push
15
+ # runs-on: ubuntu-latest
16
+ # steps:
17
+ # - name: Docker meta
18
+ # id: meta
19
+ # uses: docker/metadata-action@v4
20
+ # with:
21
+ # images: |
22
+ # parseable/parseable
23
+ # tags: |
24
+ # type=sha
25
+ # - name: Set up QEMU
26
+ # uses: docker/setup-qemu-action@v2
27
+ # - name: Set up Docker Buildx
28
+ # uses: docker/setup-buildx-action@v2
29
+ # - name: Login to DockerHub
30
+ # uses: docker/login-action@v2
31
+ # with:
32
+ # username: ${{ secrets.DOCKERHUB_USERNAME }}
33
+ # password: ${{ secrets.DOCKERHUB_TOKEN }}
34
+ # - name: Build and push
35
+ # uses: docker/build-push-action@v3
36
+ # with:
37
+ # push: true
38
+ # tags: ${{ steps.meta.outputs.tags }}
39
39
40
40
test :
41
41
name : Test Suite
You can’t perform that action at this time.
0 commit comments