diff --git a/.github/workflows/chrome-e2e.yaml b/.github/workflows/chrome-e2e.yaml index cf2c2b9..ae8fb10 100644 --- a/.github/workflows/chrome-e2e.yaml +++ b/.github/workflows/chrome-e2e.yaml @@ -1,7 +1,8 @@ name: Chrome E2E CI on: - pull_request: + push: branches: + - dev - master jobs: diff --git a/.github/workflows/netlify-deploy.yaml b/.github/workflows/netlify-deploy.yaml index 1c9fa2d..6ff7a4c 100644 --- a/.github/workflows/netlify-deploy.yaml +++ b/.github/workflows/netlify-deploy.yaml @@ -4,7 +4,7 @@ on: branches: - master jobs: - build: + deploy: runs-on: ubuntu-latest name: Build steps: @@ -31,11 +31,6 @@ jobs: yarn install yarn run generate - deploy: - runs-on: ubuntu-latest - name: Deploy - needs: build - steps: - name: Deploy to Netlify ✅ uses: nwtgck/actions-netlify@v1.1 with: @@ -43,9 +38,6 @@ jobs: production-branch: master github-token: ${{ secrets.GITHUB_TOKEN }} deploy-message: "Deploy from GitHub Actions" - enable-pull-request-comment: false - enable-commit-comment: true - overwrites-pull-request-comment: true env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}