-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add manual pipeline to delete a version of doc #1087 * Update ci job name
- Loading branch information
1 parent
6a5f587
commit 418ba4e
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
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: | ||
delete-documentation-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 }} |