From 22fe7f95ad11759f68cab65f0d4db7c19915ff9d Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Wed, 29 Jan 2025 05:48:48 +0900 Subject: [PATCH 1/2] Create GitHub releases automatically on tagging --- .github/workflows/release.yml | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000000..e97f2c079626 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,52 @@ +# 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: + - '*' + - '!*-rc*' +permissions: + contents: write +env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} +jobs: + publish: + name: Publish + runs-on: ubuntu-latest + timeout-minutes: 5 + steps: + - uses: actions/checkout@v4 + - name: Create GitHub Releases + run: | + case "${GITHUB_REF_NAME}" in + object_store_*) + version=${GITHUB_REF_NAME#object_store_} + title="object_store ${version}" + notes_file=object_store/CHANGELOG.md + ;; + *) + version=${GITHUB_REF_NAME} + title="arrow ${version}" + notes_file=CHANGELOG.md + ;; + esac + gh release create ${GITHUB_REF_NAME} \ + --title "${title}" \ + --notes-file ${notes_file} \ + --verify-tag From 802a25c540ff516802af59f2aeda5f218583a9b3 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Wed, 29 Jan 2025 07:33:03 -0500 Subject: [PATCH 2/2] Update .github/workflows/release.yml --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e97f2c079626..35f69a712096 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,8 @@ # specific language governing permissions and limitations # under the License. +# Creates a github release on https://github.com/apache/arrow-rs/releases +# when a tag is pushed to the repository name: Release on: push: