File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 97
97
- name : Checkout Wiki Repo 📃
98
98
uses : actions/checkout@v3
99
99
with :
100
- repository : ${{github.repository}}.wiki
100
+ repository : ${{ github.repository }}.wiki
101
101
path : wiki/
102
102
103
103
- name : Create tags and manifest 🏷
@@ -107,15 +107,15 @@ jobs:
107
107
if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.event_name == 'schedule'
108
108
uses : stefanzweifel/git-auto-commit-action@49620cd3ed21ee620a48530e81dba0d139c9cb80 # dependabot updates to latest release
109
109
with :
110
- commit_message : " Automated wiki publish for ${{github.sha}}"
110
+ commit_message : " Automated wiki publish for ${{ github.sha }}"
111
111
repository : wiki/
112
112
113
113
- name : Login to Docker Hub 🔐
114
114
if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.event_name == 'schedule'
115
115
uses : docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b # dependabot updates to latest release
116
116
with :
117
- username : ${{secrets.DOCKERHUB_USERNAME}}
118
- password : ${{secrets.DOCKERHUB_TOKEN}}
117
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
118
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
119
119
120
120
- name : Push Images to Docker Hub 📤
121
121
if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.event_name == 'schedule'
Original file line number Diff line number Diff line change 34
34
- name : push README to Dockerhub for base-notebook 🐳
35
35
uses : christian-korneck/update-container-description-action@d36005551adeaba9698d8d67a296bd16fa91f8e8 # dependabot updates to latest release
36
36
env :
37
- DOCKER_USER : ${{secrets.DOCKERHUB_USERNAME}}
38
- DOCKER_PASS : ${{secrets.DOCKERHUB_TOKEN}}
37
+ DOCKER_USER : ${{ secrets.DOCKERHUB_USERNAME }}
38
+ DOCKER_PASS : ${{ secrets.DOCKERHUB_TOKEN }}
39
39
with :
40
40
destination_container_repo : jupyter/base-notebook
41
41
provider : dockerhub
You can’t perform that action at this time.
0 commit comments