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