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 4b8545b commit 4d5bb07Copy full SHA for 4d5bb07
.github/workflows/release.yml
@@ -18,6 +18,12 @@ jobs:
18
- name: "Set env"
19
run: 'echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV'
20
21
+ - name: Setup git
22
+ run: |
23
+ git config --global user.name "FelixSelter"
24
+ git config --global user.email "[email protected]"
25
+ git checkout main
26
+
27
- name: Find and Replace
28
uses: jacobtomlinson/gha-find-replace@v2
29
with:
@@ -28,9 +34,6 @@ jobs:
34
35
- name: Commit and push changes
30
36
run: |
31
- git config --global user.name "FelixSelter"
32
- git config --global user.email "[email protected]"
33
- git checkout main
37
git add src/jenv.ps1
38
git commit -m "Inserted version into source file"
39
git push
0 commit comments