Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aymeric-dispa committed Feb 24, 2023
1 parent eefe172 commit 34ae831
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ on:
types: [published]

jobs:
build-metabase:
uses: ./.github/workflows/build-metabase.yml
with:
version: v0.44.0
build-driver:
uses: ./.github/workflows/build-driver.yml
needs: build-metabase
publish:
runs-on: ubuntu-latest
needs: build-driver
needs: [build-metabase, build-driver]
steps:
- name: Download jar file
uses: actions/download-artifact@v2
Expand Down

0 comments on commit 34ae831

Please sign in to comment.