From 59bd5e4ba483702b32357c38ba5a1ccddfcfbc04 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Fri, 16 Feb 2024 05:53:33 +1000 Subject: [PATCH] Fix workfloaw --- .github/workflows/build_docs.yml | 50 ++++++++++++++++---------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index c2e9c246..e0513537 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -6,31 +6,31 @@ on: - master jobs: - - build-and-deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@master + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master - - name: vuepress-deploy - uses: jenkey2011/vuepress-deploy@master - env: - ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} - TARGET_REPO: north-road/slyr - TARGET_BRANCH: gh-pages - BUILD_SCRIPT: cd docs && yarn && yarn build - BUILD_DIR: src/.vuepress/dist - CNAME: https://slyr.north-road.com + - name: vuepress-deploy + uses: jenkey2011/vuepress-deploy@master + env: + ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} + TARGET_REPO: north-road/slyr + TARGET_BRANCH: gh-pages + BUILD_SCRIPT: cd docs && yarn && yarn build + BUILD_DIR: src/.vuepress/dist + CNAME: https://slyr.north-road.com - - check-markdown: - steps: - - name: markdownlint-cli - uses: nosborn/github-action-markdown-cli@v3.3.0 - with: - files: docs/src/. - config_file: .markdownlint.yaml - dot: true - ignore_files: examples/ignore/* - ignore_path: examples/.markdownlintignore - rules: examples/rules/custom.js + check-markdown: + steps: + - name: markdownlint-cli + uses: nosborn/github-action-markdown-cli@v3.3.0 + with: + files: docs/src/. + config_file: .markdownlint.yaml + dot: true + ignore_files: examples/ignore/* + ignore_path: examples/.markdownlintignore + rules: examples/rules/custom.js