Skip to content

Commit 94718fd

Browse files
committed
change variable name
1 parent cba56c9 commit 94718fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-post-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Merge Main into Develop
105105
run: |
106-
git config user.name "$GITHUB_ACTOR"
106+
git config user.name "$GITHUB_USER"
107107
git config user.email "<>"
108108
git checkout ${{ inputs.develop_branch }}
109109
git fetch origin ${{ inputs.base_branch }}
@@ -112,7 +112,7 @@ jobs:
112112
113113
- name: Update Package Version for Next Development Cycle
114114
run: |
115-
git config user.name "$GITHUB_ACTOR"
115+
git config user.name "$GITHUB_USER"
116116
git config user.email "<>"
117117
CURRENT_VERSION=$(jq -r '.version' package.json)
118118
NEW_VERSION=$(echo "$CURRENT_VERSION" | awk -F. -v OFS=. '{$NF += 1 ; print $0"-SNAPSHOT"}')

0 commit comments

Comments
 (0)