You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2021/08/02 05:12:40 UTC

[incubator-kyuubi] branch master updated: [KYUUBI #881] [GA] Remove GA Release

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new f756476  [KYUUBI #881] [GA] Remove GA Release
f756476 is described below

commit f756476a6999713ed6e22f47ef36b86b19c9eee2
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Mon Aug 2 13:12:33 2021 +0800

    [KYUUBI #881] [GA] Remove GA Release
    
    <!--
    Thanks for sending a pull request!
    
    Here are some tips for you:
      1. If this is your first time, please read our contributor guidelines: https://kyuubi.readthedocs.io/en/latest/community/contributions.html
      2. If the PR is related to an issue in https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'.
      3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][KYUUBI #XXXX] Your PR title ...'.
    -->
    
    ### _Why are the changes needed?_
    <!--
    Please clarify why the changes are needed. For instance,
      1. If you add a feature, you can talk about the use case of it.
      2. If you fix a bug, you can clarify why it is a bug.
    -->
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/tools/testing.html#running-tests) locally before make a pull request
    
    Closes #881 from pan3793/ga-release.
    
    Closes #881
    
    a1f254c9 [Cheng Pan] [GA] Remove GA Release
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 .github/workflows/release.yml | 59 -------------------------------------------
 1 file changed, 59 deletions(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index d977448..0000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,59 +0,0 @@
-name: Release Kyuubi
-
-on:
-  push:
-    tags:
-      - '*'
-
-jobs:
-  build:
-    name: Create and Publish Release
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@master
-      # We split caches because GitHub Action Cache has a 400MB-size limit.
-      - uses: actions/cache@v1
-        with:
-          path: build
-          key: build-${{ hashFiles('**/pom.xml') }}
-          restore-keys: |
-            build-
-      - uses: actions/cache@v1
-        with:
-          path: ~/.m2/repository/com
-          key: ${{ matrix.scala }}-${{ matrix.hadoop }}-maven-com-${{ hashFiles('**/pom.xml') }}
-          restore-keys: |
-            ${{ matrix.scala }}-${{ matrix.hadoop }}-maven-com-
-      - uses: actions/cache@v1
-        with:
-          path: ~/.m2/repository/org
-          key: ${{ matrix.scala }}-${{ matrix.hadoop }}-maven-org-${{ hashFiles('**/pom.xml') }}
-          restore-keys: |
-            ${{ matrix.scala }}-${{ matrix.hadoop }}-maven-org-
-      - name: Set up JDK 8
-        uses: actions/setup-java@v1
-        with:
-          java-version: '1.8'
-      - name: Make Distribution --spark-provided
-        run: ./build/dist --tgz --spark-provided -Pkyuubi-extension-spark_3.1
-      - name: Create Release
-        id: create_release
-        uses: actions/create-release@v1
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        with:
-          tag_name: ${{ github.ref }}
-          release_name: Release Kyuubi-${{ github.ref }}
-          draft: false
-          prerelease: false
-      - name: Upload Release Asset
-        uses: alexellis/upload-assets@0.2.2
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        with:
-          asset_paths: '["./kyuubi-*tar.gz"]'
-      - name: Update Release Note
-        id: github_release_changelog
-        uses: mikepenz/release-changelog-builder-action@v1
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}