api: show cluster version (#1319) #2844
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
packages: write | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- id: vars | |
run: make ci--env | |
- uses: docker/[email protected] | |
with: | |
tags: | | |
ghcr.io/beryju/gravity:latest | |
ghcr.io/beryju/gravity:${{ steps.vars.outputs.sha }} | |
push: ${{ github.ref == 'refs/heads/main' }} | |
platforms: linux/amd64,linux/arm64 | |
context: . | |
secrets: | | |
CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }} | |
build-args: | | |
BUILD=${{ steps.vars.outputs.build }} | |
GIT_BUILD_HASH=${{ steps.vars.outputs.sha }} | |
build-cli: | |
name: Build CLI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [arm64, amd64] | |
os: [darwin, linux] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- run: | | |
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make bin/gravity-cli | |
build-web: | |
name: Build Web | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: web/package.json | |
cache: "npm" | |
cache-dependency-path: web/package-lock.json | |
- run: make web-install gen-client-ts web-build | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |