Skip to content

Commit 28f4035

Browse files
authored
Merge branch 'master' into asalikhov/docs_build_process
2 parents fe46e81 + 7db544f commit 28f4035

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,18 +56,18 @@ jobs:
5656
- name: Run Post-Build Hooks
5757
run: make -C main hook-all
5858
- name: Push Wiki to GitHub
59-
if: github.ref == 'refs/heads/master'
59+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
6060
# Pass GITHUB_REPOSITORY directly to avoid conflict with GitHub Actions built-in env var
6161
run: make -C main git-commit GITHUB_REPOSITORY='${{github.repository}}.wiki'
6262
env:
6363
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
6464
LOCAL_PATH: ../wiki
6565
- name: Login to Docker Hub
66-
if: github.ref == 'refs/heads/master'
66+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
6767
uses: docker/login-action@v1
6868
with:
6969
username: ${{secrets.DOCKERHUB_USERNAME}}
7070
password: ${{secrets.DOCKERHUB_TOKEN}}
7171
- name: Push Images to DockerHub
72-
if: github.ref == 'refs/heads/master'
72+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
7373
run: make -C main push-all

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
sphinx-build -M gettext ./ ./_build/
4242
sphinx-intl update -p ./_build/gettext -l en
4343
- name: Push Strings to Master
44-
if: github.ref == 'refs/heads/master'
44+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
4545
run: make git-commit
4646
env:
4747
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

base-notebook/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ USER root
2626
# Conda version
2727
ARG conda_version="4.10.1"
2828
# Miniforge installer patch version
29-
ARG miniforge_patch_number="4"
29+
ARG miniforge_patch_number="5"
3030
# Miniforge installer architecture
3131
ARG miniforge_arch="x86_64"
3232
# 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}"
3939
# Miniforge installer
4040
ARG miniforge_installer="${miniforge_python}-${miniforge_version}-Linux-${miniforge_arch}.sh"
4141
# Miniforge checksum
42-
ARG miniforge_checksum="9eb335cb559644a6e462c077ebc129af51b7329817574fb707b994dafdddf2af"
42+
ARG miniforge_checksum="069e151cae85ed4747721e938e7974aa00889a1ae87cff33ddbdde9530fc4c6d"
4343

4444
# Install all OS dependencies for notebook server that starts but lacks all
4545
# features (e.g., download as all possible file formats)

0 commit comments

Comments
 (0)