Broken links caused by duplicate entry #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# copy this workflow into your repo | |
name: "Documentation Teardown" | |
on: | |
pull_request_target: | |
branches: | |
- "4.4" | |
- "5.0" | |
- "5.x" | |
- "dev" | |
types: | |
- closed | |
jobs: | |
teardown-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Teardown documentation | |
run: | | |
npm install -g surge | |
surge teardown ${{ github.event.repository.owner.login}}-${{ github.event.repository.name}}-${{ github.event.pull_request.number }}.surge.sh --token ${{ secrets.SURGE_TOKEN }} |