We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cba56c9 commit 94718fdCopy full SHA for 94718fd
.github/workflows/release-post-merge.yml
@@ -103,7 +103,7 @@ jobs:
103
104
- name: Merge Main into Develop
105
run: |
106
- git config user.name "$GITHUB_ACTOR"
+ git config user.name "$GITHUB_USER"
107
git config user.email "<>"
108
git checkout ${{ inputs.develop_branch }}
109
git fetch origin ${{ inputs.base_branch }}
@@ -112,7 +112,7 @@ jobs:
112
113
- name: Update Package Version for Next Development Cycle
114
115
116
117
CURRENT_VERSION=$(jq -r '.version' package.json)
118
NEW_VERSION=$(echo "$CURRENT_VERSION" | awk -F. -v OFS=. '{$NF += 1 ; print $0"-SNAPSHOT"}')
0 commit comments