File tree Expand file tree Collapse file tree 4 files changed +42
-39
lines changed Expand file tree Collapse file tree 4 files changed +42
-39
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and push edge tag
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' main'
7
+ paths-ignore :
8
+ - ' docs/**'
9
+ - ' helm/**'
10
+ - ' assets/**'
11
+ - ' **.md'
12
+
13
+ jobs :
14
+ docker :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@v3
19
+
20
+ - name : Login to Docker Hub
21
+ uses : docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
22
+ with :
23
+ registry : ${{ env.REGISTRY }}
24
+ username : ${{ github.actor }}
25
+ password : ${{ secrets.GITHUB_TOKEN }}
26
+
27
+ - name : Extract metadata (tags, labels) for Docker
28
+ id : meta
29
+ uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
30
+ with :
31
+ images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
32
+
33
+ - name : Build and push
34
+ uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
35
+ with :
36
+ context : .
37
+ file : ./Dockerfile
38
+ push : true
39
+ tags : ${{ steps.meta.outputs.tags }}
40
+ labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change 17
17
- name : Checkout
18
18
uses : actions/checkout@v3
19
19
- name : Start compose
20
- run : docker-compose up --build -- exit-code-from quest quest
20
+ run : docker-compose up --exit-code-from quest quest
21
21
- name : Stop compose
22
22
if : always()
23
23
run : docker-compose down
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -27,9 +27,7 @@ services:
27
27
- parseable-internal
28
28
29
29
parseable :
30
- build :
31
- context : .
32
- dockerfile : Dockerfile
30
+ image : ghcr.io/parseablehq/parseable:main
33
31
command : ["parseable", "s3-store"]
34
32
ports :
35
33
- 8000
You can’t perform that action at this time.
0 commit comments