Skip to content

Commit 49acf49

Browse files
committed
Fixed UPM CLI installation path in sign and release workflow to avoid adding it to the package; updated changelog
1 parent ec31544 commit 49acf49

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/sign-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
3636
- name: Install Unity UPM CLI
3737
run: |
38-
curl -fsSL https://cdn.packages.unity.com/upm-cli/install.sh -o install.sh
39-
bash install.sh
38+
curl -fsSL https://cdn.packages.unity.com/upm-cli/install.sh -o /tmp/install.sh
39+
bash /tmp/install.sh
4040
echo "$HOME/.upm/bin" >> "$GITHUB_PATH"
4141
4242
- name: Verify Unity UPM CLI

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.3.5] - 2026-05-18
8+
## [0.3.5] - 2026-06-03
99

10-
### Added
10+
### Fixed
1111

12-
- Bumped version to trigger sign and release workflow.
12+
- Fixed UPM CLI installation path in sign and release workflow to avoid adding it to the package.
1313

1414
## [0.3.4] - 2026-05-18
1515

0 commit comments

Comments
 (0)