mirror of
https://github.com/hyprspace/hyprspace.git
synced 2026-09-12 19:51:07 +05:00
9 lines
177 B
Bash
9 lines
177 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
assets=()
|
|
for asset in ./ait-*; do
|
|
assets+=("-a" "$asset")
|
|
done
|
|
tag_name="${GITHUB_REF##*/}"
|
|
hub release create "${assets[@]}" -m "$tag_name" "$tag_name" |