ci: add release action #1
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: Upload artifact on release | ||
description: build and upload jar files on release | ||
Check failure on line 2 in .github/workflows/build-on-release.yml GitHub Actions / Upload artifact on releaseInvalid workflow file
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout driver | ||
uses: actions/checkout@v4 | ||
path: ./driver | ||
- 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 |