diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000000..35f69a71209 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,54 @@ +# 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. + +# Creates a github release on https://github.com/apache/arrow-rs/releases +# when a tag is pushed to the repository +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