Skip to content

Fix(obproxy): encrypt pwd of obproxy #452

Fix(obproxy): encrypt pwd of obproxy

Fix(obproxy): encrypt pwd of obproxy #452

Workflow file for this run

name: build images
on:
pull_request:
branches:
- master
- "*_release"
paths:
- '**/*.go'
push:
branches:
- master
- "*_release"
paths:
- '**/*.go'
env:
GO_VERSION: "1.22"
jobs:
build-images:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: go mod vendor
run: go mod vendor
- name: go build ob-operator
run: go build -o bin/manager cmd/operator/main.go
- name: go build oceanbase-dashboard
run: go build -o bin/oceanbase-dashboard cmd/dashboard/main.go