From 881f6475822bf6f81182195368e6c485e1c51a5e Mon Sep 17 00:00:00 2001 From: Niklas Meyer <62480600+DerLinkman@users.noreply.github.com> Date: Fri, 4 Feb 2022 14:34:56 +0100 Subject: [PATCH] Recreate renovate_check-build.yml --- .github/workflows/renovate_check-build.yml | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/renovate_check-build.yml diff --git a/.github/workflows/renovate_check-build.yml b/.github/workflows/renovate_check-build.yml new file mode 100644 index 000000000..9fb6eacdd --- /dev/null +++ b/.github/workflows/renovate_check-build.yml @@ -0,0 +1,23 @@ +name: Check build for renovate +on: + push: + branches: + - 'renovate/**' +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 📥 + uses: actions/checkout@v2.4.0 + with: + token: '${{ secrets.GHPAGES_ACTION_CHECKOUT_TOKEN_PAT }}' + + - name: Install dependencies 🐄 + run: | + sudo apt-get -y update + sudo apt-get -y install python3-pip + pip install -r requirements.txt + + - name: Build site 🔧 + run: | + mkdocs build --verbose --clean