Skip to content

Commit

Permalink
Create GitHub releases automatically on tagging (#7042)
Browse files Browse the repository at this point in the history
* Create GitHub releases automatically on tagging

* Update .github/workflows/release.yml

---------

Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
  • Loading branch information
kou and alamb authored Jan 29, 2025
1 parent 2bd43e9 commit c867b34
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c867b34

Please sign in to comment.