diff --git a/action.yml b/action.yml index eb27cbe..93a0d7c 100644 --- a/action.yml +++ b/action.yml @@ -9,25 +9,25 @@ runs: steps: - name: Fetch the repository uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.11" - cache: "pip" - - name: Install dependencies - run: pip install -r requirements.txt - shell: bash - - name: Consent to the use of Kedro-Telemetry - run: "echo 'consent: true' > .telemetry" - shell: bash - - name: Create build directory - run: kedro viz build - shell: bash + # - name: Set up Python + # uses: actions/setup-python@v5 + # with: + # python-version: "3.11" + # cache: "pip" + # - name: Install dependencies + # run: pip install -r requirements.txt + # shell: bash + # - name: Consent to the use of Kedro-Telemetry + # run: "echo 'consent: true' > .telemetry" + # shell: bash + # - name: Create build directory + # run: kedro viz build + # shell: bash - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./build + publish_dir: ./temp_build force_orphan: true full_commit_message: ${{ github.event.head_commit.message }} # - name: Deploy to GitHub Pages