diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml index 6717401c..fb612202 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-site.yml @@ -2,8 +2,9 @@ name: Deploy Site on: push: - tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + branches: [dev] + paths: + - 'docs/**' jobs: build-and-deploy: @@ -11,7 +12,9 @@ jobs: steps: - name: Checkout 🛎️ uses: actions/checkout@v2 - + with: + ref: 'dev' + - name: Install dependencies uses: bahmutov/npm-install@v1