File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -56,18 +56,18 @@ jobs:
56
56
- name : Run Post-Build Hooks
57
57
run : make -C main hook-all
58
58
- name : Push Wiki to GitHub
59
- if : github.ref == 'refs/heads/master'
59
+ if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
60
60
# Pass GITHUB_REPOSITORY directly to avoid conflict with GitHub Actions built-in env var
61
61
run : make -C main git-commit GITHUB_REPOSITORY='${{github.repository}}.wiki'
62
62
env :
63
63
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
64
64
LOCAL_PATH : ../wiki
65
65
- name : Login to Docker Hub
66
- if : github.ref == 'refs/heads/master'
66
+ if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
67
67
uses : docker/login-action@v1
68
68
with :
69
69
username : ${{secrets.DOCKERHUB_USERNAME}}
70
70
password : ${{secrets.DOCKERHUB_TOKEN}}
71
71
- name : Push Images to DockerHub
72
- if : github.ref == 'refs/heads/master'
72
+ if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
73
73
run : make -C main push-all
Original file line number Diff line number Diff line change 41
41
sphinx-build -M gettext ./ ./_build/
42
42
sphinx-intl update -p ./_build/gettext -l en
43
43
- name : Push Strings to Master
44
- if : github.ref == 'refs/heads/master'
44
+ if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
45
45
run : make git-commit
46
46
env :
47
47
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ USER root
26
26
# Conda version
27
27
ARG conda_version="4.10.1"
28
28
# Miniforge installer patch version
29
- ARG miniforge_patch_number="4 "
29
+ ARG miniforge_patch_number="5 "
30
30
# Miniforge installer architecture
31
31
ARG miniforge_arch="x86_64"
32
32
# Package Manager and Python implementation to use (https://github.com/conda-forge/miniforge)
@@ -39,7 +39,7 @@ ARG miniforge_version="${conda_version}-${miniforge_patch_number}"
39
39
# Miniforge installer
40
40
ARG miniforge_installer="${miniforge_python}-${miniforge_version}-Linux-${miniforge_arch}.sh"
41
41
# Miniforge checksum
42
- ARG miniforge_checksum="9eb335cb559644a6e462c077ebc129af51b7329817574fb707b994dafdddf2af "
42
+ ARG miniforge_checksum="069e151cae85ed4747721e938e7974aa00889a1ae87cff33ddbdde9530fc4c6d "
43
43
44
44
# Install all OS dependencies for notebook server that starts but lacks all
45
45
# features (e.g., download as all possible file formats)
You can’t perform that action at this time.
0 commit comments