Skip to content
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout driver
uses: actions/checkout@v4
path: ./driver

Check failure on line 12 in .github/workflows/build-on-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-on-release.yml

Invalid workflow file

The workflow is not valid. .github/workflows/build-on-release.yml (Line: 12, Col: 9): Unexpected value 'path' .github/workflows/build-on-release.yml (Line: 15, Col: 9): Unexpected value 'repository'
- name: checkout metabase
uses: actions/checkout@v4
repository: https://github.com/metabase/metabase.git
path: ./metabase
- name: install java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '21'
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 'latest'
- name: Build project
run: |
export DRIVER_PATH=$GITHUB_WORKSPACE/driver
cd $GITHUB_WORKSPACE/metabase
clojure \
-Sdeps "{:aliases {:greptimedb {:extra-deps {com.metabase/greptimedb-driver {:local/root \"$DRIVER_PATH\"}}}}}" \
-X:build:greptimedb \
build-drivers.build-driver/build-driver! \
"{:driver :greptimedb, :project-dir \"$DRIVER_PATH\", :target-dir \"$DRIVER_PATH/target\"}"
- name: Release with Notes
uses: softprops/action-gh-release@v2
with:
files: ${{ env:GITHUB_WORKSPACE }}/driver/target/greptimedb.metabase-driver.jar
generate_release_notes: true
prerelease: false