diff --git a/.github/workflows/cd.scripts.yml b/.github/workflows/cd.scripts.yml index 42ba129..6562de9 100644 --- a/.github/workflows/cd.scripts.yml +++ b/.github/workflows/cd.scripts.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4.1.1 with: { fetch-depth: 0 } - name: Set up GitHub Pages - uses: actions/configure-pages@v4.0.0 + uses: actions/configure-pages@v5.0.0 - name: Upload the documentation uses: actions/upload-pages-artifact@v3.0.0 diff --git a/dist/dotfiles b/dist/dotfiles index 61b04c8..30bdbab 100755 --- a/dist/dotfiles +++ b/dist/dotfiles @@ -15,7 +15,7 @@ check() { return 1 fi - retunr 0 + return 0 } install-apps() { @@ -42,7 +42,7 @@ install-dotfiles() { echo Installing dotfiles... mkdir -p "${root}" - git clone git@github.com:kamilsk/dotfiles.git "${root}" + git clone --recurse-submodules git@github.com:kamilsk/dotfiles.git "${root}" return $? } @@ -68,7 +68,6 @@ install-bundle() { echo Installing Homebrew bundle... brew update --force --quiet brew bundle --file="${root}"/toolset/Brewfile --no-upgrade -v - brew bundle --file="${root}"/toolset/Brewfile cleanup -v return $? }