-
Notifications
You must be signed in to change notification settings - Fork 62
60 lines (60 loc) · 1.74 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Studio Release
on:
release:
types:
- published
jobs:
call-workflow:
uses: vesoft-inc/nebula-studio/.github/workflows/build.yml@master
secrets:
oss_endpoint: ${{ secrets.OSS_ENDPOINT }}
oss_id: ${{ secrets.OSS_ID }}
oss_secret: ${{ secrets.OSS_SECRET }}
oss_url: ${{ secrets.OSS_URL }}
ga_id: ${{ secrets.GA_ID }}
clarity_id: ${{ secrets.CLARITY_ID }}
docker-image:
name: docker image build
runs-on: ubuntu-latest
steps:
-
name: Checkout Github Action
uses: actions/checkout@master
-
name: set track
run: bash ./scripts/setEventTracking.sh ${{ secrets.GA_ID }} ${{ secrets.CLARITY_ID }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
vesoft/nebula-graph-studio
tags: |
# git tag & latest coverred
type=ref,event=tag
# git branch
type=ref,event=branch
# v3.0.0
type=semver,pattern=v{{version}}
# v3
type=semver,pattern=v{{major}}
# v3.0
type=semver,pattern=v{{major}}.{{minor}}
- name: Log into registry
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker images
uses: docker/build-push-action@v3
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}