mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-11 12:02:56 +00:00
[ci skip] Fix wiki commit step, use single shell session
This commit is contained in:
10
Makefile
10
Makefile
@@ -87,11 +87,11 @@ git-commit: ## commit outstading git changes and push to remote
|
|||||||
@git config --global user.email "actions@users.noreply.github.com"
|
@git config --global user.email "actions@users.noreply.github.com"
|
||||||
@git remote add publisher https://$(GITHUB_TOKEN)@github.com/$(GITHUB_REPOSITORY).git
|
@git remote add publisher https://$(GITHUB_TOKEN)@github.com/$(GITHUB_REPOSITORY).git
|
||||||
|
|
||||||
@cd $(LOCAL_PATH)
|
@cd $(LOCAL_PATH) && \
|
||||||
@git checkout master
|
git checkout master && \
|
||||||
@git add -A -- .
|
git add -A -- . && \
|
||||||
@git commit -m "[ci skip] Automated publish for $(GITHUB_SHA)" || exit 0
|
git commit -m "[ci skip] Automated publish for $(GITHUB_SHA)" || exit 0 && \
|
||||||
@git push -u publisher master
|
git push -u publisher master
|
||||||
|
|
||||||
hook/%: export COMMIT_MSG?=$(shell git log -1 --pretty=%B)
|
hook/%: export COMMIT_MSG?=$(shell git log -1 --pretty=%B)
|
||||||
hook/%: export GITHUB_SHA?=$(shell git rev-parse HEAD)
|
hook/%: export GITHUB_SHA?=$(shell git rev-parse HEAD)
|
||||||
|
Reference in New Issue
Block a user