This is an automated email from the ASF dual-hosted git repository.
akitouni pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildstream.git
The following commit(s) were added to refs/heads/master by this push:
new 82e562c1b Update release workflow to use gh instead of hub
82e562c1b is described below
commit 82e562c1bced83d7cb91a00997bd705ed17cd915
Author: Abderrahim Kitouni <[email protected]>
AuthorDate: Sun Aug 11 12:07:11 2024 +0100
Update release workflow to use gh instead of hub
---
.github/workflows/release.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 19146c77d..8577eabe1 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -122,7 +122,7 @@ jobs:
- name: Upload release assets
run: |
tag_name="${GITHUB_REF##*/}"
- hub release create -a "docs.tgz" -m "$tag_name" "$tag_name"
+ gh release create "$tag_name" "docs.tgz" --notes "$tag_name"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}