diff options
| author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-06-27 17:18:00 -0400 |
|---|---|---|
| committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-06-27 17:18:00 -0400 |
| commit | 6dd8a02ed1fa4c34b477a1106333c12dc7efe5cd (patch) | |
| tree | 2d008a281c4c0a4d925bc6dec53e909259ddff42 /.github/workflows | |
| parent | db4994734dd485eda64cccc0c05b50aff82d3914 (diff) | |
| parent | 895db142ee9224e1b8e4d2fc6348dc1801bea0dc (diff) | |
Merge branch 'project/gltf_mesh_import' into geenz/develop-to-gltf-mesh
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 198785d39b..4bf2af644a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -218,8 +218,10 @@ jobs: prefix=${ba[0]} if [ "$prefix" == "project" ]; then IFS='_' read -ra prj <<< "${ba[1]}" + prj_str="${prj[*]}" # uppercase first letter of each word - export viewer_channel="Second Life Project ${prj[*]^}" + capitalized=$(echo "$prj_str" | awk '{for (i=1; i<=NF; i++) $i = toupper(substr($i,1,1)) substr($i,2); print}') + export viewer_channel="Second Life Project $capitalized" elif [[ "$prefix" == "release" || "$prefix" == "main" ]]; then export viewer_channel="Second Life Release" @@ -455,7 +457,6 @@ jobs: prerelease: true generate_release_notes: true target_commitish: ${{ github.sha }} - previous_tag: release append_body: true fail_on_unmatched_files: true files: | |
