Merge pull request #700 from threefoldtech/development_tfconnect_update #806
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: www.manual.dev.grid.tf | |
on: | |
push: | |
branches: [ development ] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: pushing latest change on www.manual.dev.grid.tf | |
uses: appleboy/ssh-action@master | |
with: | |
host: www.manual.dev.grid.tf | |
username: ${{ secrets.TF_USER }} | |
key: ${{ secrets.TF_SECRET }} | |
port: ${{ secrets.TF_PORT }} | |
script: | | |
cd websites/www2/info_grid/ | |
git checkout development | |
git log -1 | |
git fetch | |
git reset --hard origin/development | |
make build | |
wait: | |
needs: deploy | |
name: Wait for Website Update | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait Period | |
id: wait-deploy | |
run: | | |
echo "Sleeping for 30" | |
sleep 30 | |
checklinks: | |
needs: wait | |
name: Check for Broken Links | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for Broken Links | |
id: link-report | |
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest | |
with: | |
args: 'https://www.manual.dev.grid.tf -e 404 501 503 504 -w all' |