forked from apache/amoro
-
Notifications
You must be signed in to change notification settings - Fork 1
feat: releaser for fusion #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
565bc64
feat: adding fusion releasor and kind cluster setup
hash-data 4c014ee
fix: makefile cluster name
hash-data 809e73b
chore: testing new release after change in postgres init
hash-data c26cc23
Merge branch 'master' of https://github.com/datazip-inc/olake-amoro i…
hash-data 216e3cf
chore: branch tag
hash-data 8b4a6c2
voila: working perfectly
hash-data c693d2b
fix: upgrading version of java scala and spark
hash-data 40aa4ad
chore: add licence comments
hash-data 731d88f
chore: changes asked by Badal and some licence updates
hash-data 1b2af45
chore: try building from org secrets
hash-data a3fb3a7
Merge branch 'staging' of https://github.com/datazip-inc/olake-amoro …
hash-data cafdf1f
chore: updating licence text
hash-data b4b0ae9
chore: update regex
hash-data 662354a
feat: debug mode and major interval configurations (#13)
hash-data ae65e72
chore: release dev-v2 and header check
hash-data 49e6041
fix: licence and build image
hash-data 9a04ea3
chore: remove image push
hash-data b1cef9c
chore: build correct images
hash-data 2980bb8
chore: removing build tag, prev commit fixed all terminal and optimiz…
hash-data 953f295
fix: added fix for parquet decoding error (#17)
shubham19may e817cf0
chore: fixing header check as well as adding test check back
hash-data c9a6498
chore: resolving schitiz comment on adding a ip which avoid collision
hash-data 2bec72e
chore: remove cluster role binding
hash-data d8549fb
chore: resolve badal comment
hash-data 70aa936
chore: move folder to local-test
hash-data c8aaff3
chore: add todo
hash-data File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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,72 @@ | ||
| # | ||
| # Licensed to the Apache Software Foundation (ASF) under one or more | ||
| # contributor license agreements. See the NOTICE file distributed with | ||
| # this work for additional information regarding copyright ownership. | ||
| # The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| # (the "License"); you may not use this file except in compliance with | ||
| # the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # | ||
| # Modified by Datazip Inc. in 2026 | ||
|
|
||
| name: Draft Releaser From Master | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [closed] | ||
| branches: | ||
| - master | ||
|
|
||
| jobs: | ||
| create_draft_release: | ||
| if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'master' && github.event.pull_request.head.ref == 'staging' | ||
| name: Create Draft Release | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Get latest release | ||
| id: latest-release | ||
| run: | | ||
| latest_tag=$(git tag -l | sort -V | tail -1) | ||
| echo "LATEST_TAG=$latest_tag" >> $GITHUB_ENV | ||
|
|
||
| - name: Generate next version | ||
| id: generate-next-version | ||
| run: | | ||
| if [ -z "$LATEST_TAG" ]; then | ||
| next_version="v0.0.0" | ||
| else | ||
| # Remove 'v' prefix and split version into array | ||
| version=${LATEST_TAG#v} | ||
| IFS='.' read -ra VERSION_PARTS <<< "$version" | ||
|
|
||
| # Increment the last number (patch version) | ||
| VERSION_PARTS[2]=$((VERSION_PARTS[2] + 1)) | ||
|
|
||
| # Reconstruct the version with 'v' prefix | ||
| next_version="v${VERSION_PARTS[0]}.${VERSION_PARTS[1]}.${VERSION_PARTS[2]}" | ||
| fi | ||
| echo "NEXT_VERSION=$next_version" >> $GITHUB_ENV | ||
|
|
||
| - name: Create draft release | ||
| id: create-draft-release | ||
| uses: ncipollo/release-action@v1 | ||
| with: | ||
| tag: ${{ env.NEXT_VERSION }} | ||
| generateReleaseNotes: true | ||
| draft: true | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.