From b2b8f822754d4c82e92d8aea3c01d835f0138400 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Tue, 27 Aug 2024 18:19:19 +0100 Subject: [PATCH] fix(vrd): :bug: fix 'refs/heads/main' --- .github/workflows/document.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index 5ba2263..2e714e3 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -14,7 +14,7 @@ on: jobs: all: name: Document - if: github.ref == 'refs/heads/master' && github.event_name == 'push' + if: github.ref == 'refs/heads/main' && github.event_name == 'push' runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -46,7 +46,7 @@ jobs: retention-days: 1 - name: Write CNAME file - run: echo 'doc.vrd.com' > ./target/doc/CNAME + run: echo 'doc.vrdlib.com' > ./target/doc/CNAME - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v4.0.0