Skip to content

Commit

Permalink
Add manual pipeline to delete a version of doc #1087
Browse files Browse the repository at this point in the history
  • Loading branch information
hocinehacherouf committed Sep 12, 2022
1 parent 6a5f587 commit 1654c1c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/delete-documentation-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Delete Documentation Version
on:
workflow_dispatch:
inputs:
version_to_delete:
description: 'Version to delete'
required: true
jobs:
deploy-documentation-preview-version:
name: Delete Documentation Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: docs/main
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: pip install -r requirements.txt
- name: Setup git user for mike push
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Delete doc version and push
run: mike delete --push ${{ github.event.inputs.version_to_delete }}

0 comments on commit 1654c1c

Please sign in to comment.