Skip to content

Commit de67ce8

Browse files
committed
fixup! Add a workflow definition to upload Git for Windows' snapshots
1 parent c2740c9 commit de67ce8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/upload-snapshot.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,12 @@ jobs:
251251
.map(path => `${urlPrefix}${path.replace(/.*\//, '')}`)
252252
)
253253
- name: push gh-pages
254-
run: git -C gh-pages push
254+
run: |
255+
git -C gh-pages \
256+
-c user.author="${{ github.actor }}" \
257+
-c user.email="${{ github.actor }}@noreply.github.com" \
258+
commit -sm "Add snapshot: ${{ steps.bundle-artifacts.outputs.ver }}" &&
259+
git -C gh-pages push
255260
- name: mark check run as completed
256261
if: env.CREATE_CHECK_RUN != 'false' && always()
257262
uses: ./.github/actions/check-run-action

0 commit comments

Comments
 (0)