forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add release script for gx plugin (#289)
- Loading branch information
1 parent
5537766
commit b4dee7f
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: pypi-release acryl-datahub-gx-plugin | ||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
setup: | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tag: ${{ steps.tag.outputs.tag }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Compute Tag | ||
id: tag | ||
run: | | ||
echo "GITHUB_REF: $GITHUB_REF" | ||
SHORT_SHA=$(git rev-parse --short "$GITHUB_SHA") | ||
TAG=$(echo ${GITHUB_REF} | sed -e 's,refs/tags/v,,g') | ||
echo "tag=$TAG" >> $GITHUB_OUTPUT | ||
push_to_pypi: | ||
name: Build and push python package to PyPI | ||
runs-on: ubuntu-latest | ||
needs: setup | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: "zulu" | ||
java-version: 17 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
cache: "pip" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine build | ||
- name: Install dependencies | ||
run: ./metadata-ingestion/scripts/install_deps.sh | ||
- name: Build and publish | ||
env: | ||
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | ||
RELEASE_SKIP_TEST: "true" | ||
run: | | ||
cd metadata-ingestion-modules/gx-plugin | ||
RELEASE_VERSION=${{ needs.setup.outputs.tag }} ./scripts/release.sh |