diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000..343a04ac4edf2 Binary files /dev/null and b/.DS_Store differ diff --git a/.github/workflows/health-check.yml b/.github/workflows/health-check.yml index 25ed280449c52..0d311187bbea4 100644 --- a/.github/workflows/health-check.yml +++ b/.github/workflows/health-check.yml @@ -3,7 +3,7 @@ name: Scheduled Health Check # Controls when the action will run. on: schedule: - - cron: "30 * * * *" + - cron: "60 * * * *" jobs: health_check_job: @@ -13,4 +13,25 @@ jobs: - uses: actions/checkout@v2 - name: Run Shell Script id: shell_script_run - run: bash ./health-check.sh + run: | + bash ./health-check.sh + mkdir dist + cp -r . dist + ls -al dist + + deploy: + needs: health_check_job + + permissions: + pages: write + id-token: write + + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + runs-on: ubuntu-latest + steps: + - name: Deploy to GitHub Pages 🚀 + id: deployment + uses: actions/deploy-pages@v1 \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000000..6f3a2913e199c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/index.css b/index.css index 28c26bd96d223..1f928087198ff 100644 --- a/index.css +++ b/index.css @@ -121,6 +121,10 @@ footer a { justify-content: center; } +.logo { + display: flex; + align-items: left; +} .headline span { background-color: #f5f6f8; border-radius: 5px; diff --git a/index.html b/index.html index 15e0708c77c05..828525cf46f66 100644 --- a/index.html +++ b/index.html @@ -7,8 +7,9 @@