Nebula Graph Studio v3.9.0 #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |