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

weibin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-graphar.git


The following commit(s) were added to refs/heads/main by this push:
     new 202c7ffd chore(ci): remove the release action since the application is 
illegal for apache policy(#530)
202c7ffd is described below

commit 202c7ffddaec9348a50ea8e17ee8380d53b532c9
Author: Weibin Zeng <[email protected]>
AuthorDate: Tue Jul 2 17:23:12 2024 +0800

    chore(ci): remove the release action since the application is illegal for 
apache policy(#530)
    
    Signed-off-by: acezen <[email protected]>
---
 .github/workflows/release.yml | 53 -------------------------------------------
 1 file changed, 53 deletions(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index ec317f6f..00000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,53 +0,0 @@
-# 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.
-
-name: Release
-
-on:
-  push:
-    tags:
-      - "v*"
-  workflow_dispatch:
-
-concurrency:
-  group: ${{ github.repository }}-${{ github.event.number || github.head_ref 
|| github.sha }}-${{ github.workflow }}
-  cancel-in-progress: true
-
-# Automatically create a GitHub Release, with release details specified (the 
relevant commits)
-jobs:
-  release:
-    runs-on: ${{ matrix.os }}
-    if: ${{ github.repository == 'apache/incubator-graphar' }}
-    strategy:
-      matrix:
-        os: [ubuntu-latest]
-
-    steps:
-      - name: Extract tag name
-        id: tag
-        if: ${{ github.event_name == 'push' && startsWith(github.ref, 
'refs/tags/v') && github.repository == 'apache/incubator-graphar' }}
-        run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
-
-      - name: Cut a versioned release
-        uses: "marvinpinto/action-automatic-releases@latest"
-        if: ${{ github.event_name == 'push' && startsWith(github.ref, 
'refs/tags/v') && github.repository == 'apache/incubator-graphar' }}
-        with:
-          repo_token: "${{ secrets.GITHUB_TOKEN }}"
-          automatic_release_tag: ${{ steps.tag.outputs.TAG }}
-          draft: true
-          prerelease: false
-          title: "GraphAr ${{ steps.tag.outputs.TAG }}"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to