Skip to content

Commit

Permalink
fix deployment error
Browse files Browse the repository at this point in the history
Signed-off-by: aryan <[email protected]>
  • Loading branch information
aryan-bhokare committed Aug 13, 2024
1 parent bbb1c3a commit 9324a78
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/mkdocs_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
name: Publish docs via GitHub Pages

on:
push:
branches:
- main

jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest

steps:
- name: Checkout main
- name: Checkout code
uses: actions/checkout@v2

- name: Fetch Submodule Branches
run: |
git submodule foreach --recursive 'git fetch --all'
git submodule update --init --remote --recursive
git submodule foreach --recursive 'git fetch origin +refs/heads/*:refs/remotes/origin/*'
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
# Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Uncomment the following line if using PERSONAL_TOKEN
Expand Down
8 changes: 4 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[submodule "docs/Submodules/IntelOwl"]
path = docs/Submodules/IntelOwl
url = git@github.com:aryan-bhokare/IntelOwl.git
url = https://github.com/aryan-bhokare/IntelOwl.git
[submodule "docs/Submodules/GreedyBear"]
path = docs/Submodules/GreedyBear
url = git@github.com:aryan-bhokare/GreedyBear.git
url = https://github.com/aryan-bhokare/GreedyBear.git
[submodule "docs/Submodules/pyintelowl"]
path = docs/Submodules/pyintelowl
url = git@github.com:aryan-bhokare/pyintelowl.git
url = https://github.com/aryan-bhokare/pyintelowl.git
[submodule "docs/Submodules/GoIntelOwl"]
path = docs/Submodules/GoIntelOwl
url = git@github.com:aryan-bhokare/go-intelowl.git
url = https://github.com/aryan-bhokare/go-intelowl.git

0 comments on commit 9324a78

Please sign in to comment.