This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git
The following commit(s) were added to refs/heads/main by this push:
new e3b8561 Add automatic GitHub release workflow (#797)
e3b8561 is described below
commit e3b8561f1d0991850830755bb8f9a68b0e68c516
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri Jul 10 08:54:20 2026 -0400
Add automatic GitHub release workflow (#797)
---
.github/workflows/release.yml | 45 +++++++++++++++++++++++++++++++++++++++++++
dev/release/README.md | 9 +++++++++
2 files changed, 54 insertions(+)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..141fb5c
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,45 @@
+# 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-object-store/releases
+# when a non-RC release tag is pushed to the repository.
+name: Release
+on:
+ push:
+ tags:
+ - 'v*'
+ - '!*-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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #
v7.0.0
+ - name: Create GitHub Release
+ run: |
+ version=${GITHUB_REF_NAME}
+ title="object_store ${version}"
+ notes_file=CHANGELOG.md
+ gh release create ${GITHUB_REF_NAME} \
+ --title "${title}" \
+ --notes-file ${notes_file} \
+ --verify-tag
diff --git a/dev/release/README.md b/dev/release/README.md
index 967f17f..0830386 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -208,6 +208,15 @@ Move tarball to the release location in SVN, e.g.
https://dist.apache.org/repos/
Congratulations! The release is now official!
+### Check the GitHub release
+
+The [`release.yml`] workflow automatically creates a GitHub release for
+non-RC `v*` tags. Check that the release is created and contains the
+correct changelog here:
+https://github.com/apache/arrow-rs-object-store/releases
+
+[`release.yml`]:
https://github.com/apache/arrow-rs-object-store/blob/main/.github/workflows/release.yml#L1-L0
+
### Publish on Crates.io
Only approved releases of the tarball should be published to