From fd2960e90a98c61a1b7474e9ac205f294e035634 Mon Sep 17 00:00:00 2001 From: mamu Date: Mon, 27 May 2024 14:46:34 +0900 Subject: [PATCH] Do not use secret --- .github/workflows/github-pages.yaml | 5 +---- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-pages.yaml b/.github/workflows/github-pages.yaml index 714f8981..37aba443 100644 --- a/.github/workflows/github-pages.yaml +++ b/.github/workflows/github-pages.yaml @@ -21,17 +21,14 @@ jobs: with: python-version: 3.11 - name: Install - env: - SECRET_GITHUB_TOKEN: ${{ secrets.SECRET_GITHUB_TOKEN }} run: | python -m pip install -U pip pip install --progress-bar off . pip install --progress-bar off PyGitHub - pip install --progress-bar off git+https://${SECRET_GITHUB_TOKEN}@github.com/optuna/optunahub.git + pip install --progress-bar off git+https://github.com/optuna/optunahub.git pip install --progress-bar off ".[docs]" - name: Build env: - SECRET_GITHUB_TOKEN: ${{ secrets.SECRET_GITHUB_TOKEN }} OPTUNAHUB_NO_ANALYTICS: 1 run: | cd docs diff --git a/pyproject.toml b/pyproject.toml index 614ecce7..b4c75bef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ docs = [ "sphinx-gallery", "matplotlib", "optuna", - # "optunahub", + "optunahub", ] [project.urls]