Skip to content

Commit 30c81c7

Browse files
committed
Create initial nightly commit
1 parent 9b15377 commit 30c81c7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/deploy-nightly.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- name: Checkout code
2020
uses: actions/[email protected]
2121
with:
22+
ssh-key: ${{ secrets.RELEASE_SSH_KEY }}
2223
fetch-depth: 0
2324

2425
- name: Get latest nightly tag
@@ -56,6 +57,12 @@ jobs:
5657
echo "No changes detected since last nightly tag. Exiting without creating new nightly."
5758
exit 0
5859
60+
- name: Configure Git user
61+
if: steps.check-changes.outputs.has_changes == 'true'
62+
run: |
63+
git config user.name "jocmp"
64+
git config user.email "[email protected]"
65+
5966
- name: Create nightly tag
6067
if: steps.check-changes.outputs.has_changes == 'true'
6168
run: |

0 commit comments

Comments
 (0)