1
1
name : release
2
+
2
3
on :
3
4
push :
4
5
branches :
5
6
- master
6
7
pull_request :
8
+
7
9
jobs :
8
10
stable :
9
11
if : github.ref == 'refs/heads/master'
@@ -16,101 +18,48 @@ jobs:
16
18
githubToken : ${{ secrets.GITHUB_TOKEN }}
17
19
npmToken : ${{ secrets.NODE_AUTH_TOKEN }}
18
20
19
- docker-build :
20
- # disable publishing images on master until #7283 lands (has better image that should be used instead)
21
- if : false
21
+ docker :
22
22
runs-on : ubuntu-latest
23
+ env :
24
+ VERSION : ${{ github.ref == 'refs/heads/master' && 'latest' || github.sha }} # TODO: actual versions to publish
23
25
steps :
24
26
- name : checkout
25
27
uses : actions/checkout@v4
26
-
27
- - name : Set up Docker Buildx
28
+ - name : set up docker buildx
28
29
uses : docker/setup-buildx-action@v3
29
-
30
- - name : Create Docker Buildx builder
31
- run : docker buildx create --name mybuilder --use
32
-
33
- - name : Inspect Docker Buildx builder
34
- run : docker buildx inspect --bootstrap
35
-
36
- - name : Log in to GitHub Container Registry
37
- uses : docker/login-action@v3
30
+ - name : log in to ghcr
31
+ uses : docker/login-action@v2
38
32
with :
39
33
registry : ghcr.io
40
34
username : ${{ github.actor }}
41
35
password : ${{ secrets.GITHUB_TOKEN }}
42
-
43
- - name : Build Docker image for local testing
44
- id : build-single
45
- uses : docker/build-push-action@v6
36
+ - name : setup env
37
+ uses : the-guild-org/shared-config/setup@main
46
38
with :
47
- context : ./docker
48
- push : false
49
- load : true
50
- platforms : linux/amd64
51
- tags : ghcr.io/ardatan/mesh-serve:test
52
-
53
- - name : Use Node
54
- uses : actions/setup-node@v4
55
- with :
56
- node-version : 18
57
- cache : ' yarn'
58
-
59
- - name : Install dependencies
60
- run : yarn
61
-
62
- - name : Run E2E tests
63
- run : yarn test:e2e -- docker-image
64
-
65
- - name : Prepare Bake inputs
66
- id : docker-bake-inputs
39
+ nodeVersion : 18
40
+ packageManagerVersion : modern
41
+ - name : prepare
42
+ run : yarn prebuild
43
+ - name : bundle
44
+ run : yarn bundle
45
+ - name : version
67
46
run : |
68
- targets=$(docker buildx bake -f docker/docker.hcl --print default | jq -r '.group.default.targets[]')
69
- input_set=""
70
- first=0
71
-
72
- EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
73
-
74
- echo "set<<$EOF" >> "$GITHUB_ENV"
75
- for target in $targets
76
- do
77
- echo "$target.cache-from=type=gha,ignore-error=true,scope=$GITHUB_REF-$target" >> "$GITHUB_ENV"
78
- echo "$target.cache-to=type=gha,ignore-error=true,mode=max,scope=$GITHUB_REF-$target" >> "$GITHUB_ENV"
79
- done
80
- echo "$EOF" >> "$GITHUB_ENV"
81
-
82
- - name : Build docker images
83
- timeout-minutes : 360
84
- id : docker-bake
85
- env :
86
- DOCKER_REGISTRY : ghcr.io/ardatan/
87
- COMMIT_SHA : ${{ github.sha }}
88
- BRANCH_NAME : ${{ github.ref_name }}
89
- BUILD_TYPE : ' publish'
90
- PWD : ${{ github.workspace }}
91
- BUILD_STABLE : ${{ github.event_name == 'push' && '1' || '' }}
92
- uses : docker/bake-action@v5
47
+ echo "VERSION=${{ github.ref == 'refs/heads/master' && 'latest' || '$(git rev-parse --short HEAD)' }}" >> $GITHUB_ENV
48
+ - name : bake and push
49
+ uses : docker/bake-action@v4
93
50
with :
94
51
provenance : false
95
- push : true
96
- files : docker/docker.hcl
97
- targets : default
98
52
set : |
99
- ${{ steps.docker-bake-inputs.outputs.set }}
100
- graphql-mesh.args.COMMIT_SHA=${{ github.sha }}
101
- graphql-mesh.args.BRANCH_NAME=${{ github.ref_name }}
102
-
103
- - name : Log out of GitHub Container Registry
104
- run : docker logout ghcr.io
105
-
106
- - name : Comment on PR with Docker image
53
+ *.cache-from=type=gha
54
+ *.cache-to=type=gha,mode=max
55
+ push : true
56
+ - name : comment on pr
107
57
if : github.event_name == 'pull_request'
108
58
uses : marocchino/sticky-pull-request-comment@v2
109
59
with :
110
- token : ${{ secrets.GH_API_TOKEN }}
111
- header : Docker Image
60
+ header : Docker Images
112
61
message : |
113
- The Docker image for this PR is available at:
62
+ Published images for this PR are available at:
114
63
```
115
- ghcr.io/ardatan/mesh-serve:${{ github.sha }}
64
+ ghcr.io/ardatan/mesh-serve:${{ env.VERSION }}
116
65
```
0 commit comments