Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
68c4a6db
Commit
68c4a6db
authored
Aug 07, 2020
by
GitHub Actions
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix git-commit var syntax
parent
01013cf9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Makefile
Makefile
+4
-3
No files found.
Makefile
View file @
68c4a6db
...
@@ -79,17 +79,18 @@ docs: ## build HTML documentation
...
@@ -79,17 +79,18 @@ docs: ## build HTML documentation
make
-C
docs html
make
-C
docs html
git-commit
:
LOCAL_PATH?=.
git-commit
:
LOCAL_PATH?=.
git-commit
:
export
GITHUB_SHA?=$(shell git rev-parse HEAD)
git-commit
:
GITHUB_SHA?=$(shell git rev-parse HEAD)
git-commit
:
GITHUB_REPOSITORY?=jupyter/docker-stacks
git-commit
:
GITHUB_REPOSITORY?=jupyter/docker-stacks
git-commit
:
GITHUB_TOKEN?=
git-commit
:
##
commit outstading git changes and push to remote
git-commit
:
##
commit outstading git changes and push to remote
@
git config
--global
user.name
"GitHub Actions"
@
git config
--global
user.name
"GitHub Actions"
@
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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment