Skip to content

Commit 9ab1752

Browse files
committed
fix: source environment variables
1 parent d017fe7 commit 9ab1752

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/update-version.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
id: check_team
2323
run: |
2424
./.github/scripts/check_team_membership.sh "${{ github.actor }}" "${{ secrets.UNITY_IMMUTABLE_SDK_GITHUB_TOKEN }}"
25-
echo "$IS_MEMBER"
25+
source $GITHUB_ENV
26+
echo "${{ github.actor }} is a member of the SDK team: $IS_MEMBER"
2627
if [[ "$IS_MEMBER" != "true" ]]; then
2728
echo "Not a member of the SDK team, skipping update"
2829
# exit 1

0 commit comments

Comments
 (0)