From 79e71a42c3b496b8a626fe1d84c277749083a90e Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Sat, 25 Jun 2022 23:11:20 +0200 Subject: [PATCH] :wrench: Updating files to keep up with template --- .github/workflows/Deploy.yml | 2 +- getdeps.sh | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 51398a2..0d7307d 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -40,7 +40,7 @@ jobs: with: version: 1 - - name: Get dependencies from jso-docs.github.io + - name: Get dependencies from JuliaSmoothOptimizers.github.io run: bash getdeps.sh - name: Build diff --git a/getdeps.sh b/getdeps.sh index b9aebf8..f522d89 100644 --- a/getdeps.sh +++ b/getdeps.sh @@ -1,11 +1,11 @@ #!/bin/bash -# Script to clone the jso-docs main repo and get the necessary folders -wget https://github.com/jso-docs/jso-docs.github.io/archive/refs/heads/main.zip +# Script to clone the JuliaSmoothOptimizers main repo and get the necessary folders +wget https://github.com/JuliaSmoothOptimizers/JuliaSmoothOptimizers.github.io/archive/refs/heads/main.zip unzip main.zip if [ -z "$CI" ]; then rm -rf _assets _layout _libs _sass - mv -f jso-docs.github.io-main/{_assets,_layout,_sass,_libs,package.json,config.md,utils.jl} . + mv -f JuliaSmoothOptimizers.github.io-main/{_assets,_layout,_sass,_libs,package.json,config.md,utils.jl} . else - mv -f jso-docs.github.io-main/{_layout,_libs,_sass,package.json,config.md,utils.jl} . + mv -f JuliaSmoothOptimizers.github.io-main/{_layout,_libs,_sass,package.json,config.md,utils.jl} . fi -rm -rf jso-docs.github.io-main main.zip \ No newline at end of file +rm -rf JuliaSmoothOptimizers.github.io-main main.zip \ No newline at end of file