diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml index 81258e3..55d52b5 100644 --- a/.github/workflows/continuous-deployment.yml +++ b/.github/workflows/continuous-deployment.yml @@ -41,6 +41,8 @@ jobs: cp dist/cv/browser/index.html dist/cv/browser/404.html - name: Setup Pages uses: actions/configure-pages@v3 + with: + enablement: true - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: diff --git a/README.md b/README.md index e7372d9..82f5955 100644 --- a/README.md +++ b/README.md @@ -9,20 +9,20 @@
- - + + - + - - + + - - + + diff --git a/setup.sh b/setup.sh deleted file mode 100644 index 7d7e6fc..0000000 --- a/setup.sh +++ /dev/null @@ -1,13 +0,0 @@ -# move all files of template-root to root directory of this project -mv -v ./.github/template-root/* ./ -mkdir .github/workflows -mv -v .github/template-root/.github/workflows/continuous-deployment.yml .github/workflows/continuous-deployment.yml - -# remove content of template-root -rm -f -r ./.github/template-root -rm -f ./setup.sh - -# commit the changes -git add . -git commit -m "execute setup script" -git push