From 80404d28f040df49706ba2c1e954aee945711aa9 Mon Sep 17 00:00:00 2001 From: "Nicholas C. Zakas" Date: Fri, 10 Jun 2022 18:11:40 -0700 Subject: [PATCH] chore: remove docs deploy workflow (#15984) --- .github/workflows/docs-deploy.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/docs-deploy.yml diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml deleted file mode 100644 index 171ee5400f9..00000000000 --- a/.github/workflows/docs-deploy.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: 'Docs Deploy' - -on: - release: - types: ['published'] - -permissions: - contents: read - -jobs: - deploy: - name: 'Deploy' - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: '16.x' - - working-directory: docs - run: | - npm install - npm run build - npx netlify deploy --dir=_site --message='Docs deploy ${{ github.event.release.tag_name }}' --prod - env: - NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} - NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} - NETLIFY_DEPLOY_TO_PROD: true