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 c2740c9 commit de67ce8Copy full SHA for de67ce8
.github/workflows/upload-snapshot.yml
@@ -251,7 +251,12 @@ jobs:
251
.map(path => `${urlPrefix}${path.replace(/.*\//, '')}`)
252
)
253
- name: push gh-pages
254
- run: git -C gh-pages push
+ 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
260
- name: mark check run as completed
261
if: env.CREATE_CHECK_RUN != 'false' && always()
262
uses: ./.github/actions/check-run-action
0 commit comments