-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68aa471
commit dc3f402
Showing
3 changed files
with
71 additions
and
133 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,76 +1,76 @@ | ||
name: delete all published docs CI | ||
# name: delete all published docs CI | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
required: false | ||
description: 'Version number from branch to delete' | ||
# default: "main" | ||
type: string | ||
alias: | ||
required: false | ||
description: 'Version or alias. Use a branch version for all docs use the alias to hide docs.' | ||
# default: "latest" | ||
type: string | ||
# title: | ||
# required: false | ||
# description: 'Doc site dropdown menu title (version +/- latest)' | ||
# default: "latest" | ||
# type: string | ||
# on: | ||
# workflow_dispatch: | ||
# inputs: | ||
# version: | ||
# required: false | ||
# description: 'Version number from branch to delete' | ||
# # default: "main" | ||
# type: string | ||
# alias: | ||
# required: false | ||
# description: 'Version or alias. Use a branch version for all docs use the alias to hide docs.' | ||
# # default: "latest" | ||
# type: string | ||
# # title: | ||
# # required: false | ||
# # description: 'Doc site dropdown menu title (version +/- latest)' | ||
# # default: "latest" | ||
# # type: string | ||
|
||
# pull_request: | ||
# branches: | ||
# - "master" | ||
# # pull_request: | ||
# # branches: | ||
# # - "master" | ||
|
||
jobs: | ||
install_dependencies_and_deploy: | ||
name: install dependencies and deploy latest changes to prod | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout latest | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ inputs.version }} | ||
fetch-depth: 0 | ||
# jobs: | ||
# install_dependencies_and_deploy: | ||
# name: install dependencies and deploy latest changes to prod | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: checkout latest | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# ref: ${{ inputs.version }} | ||
# fetch-depth: 0 | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
cache: 'pip' # caching pip dependencies | ||
# - name: setup python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: '3.9' | ||
# cache: 'pip' # caching pip dependencies | ||
|
||
- name: install dependencies | ||
run: | | ||
pip3 install -r requirements.txt | ||
- name: Configure Git User | ||
run: | | ||
git config user.name "jasonnovichrunai" | ||
git config user.email "[email protected]" | ||
# git fetch origin gh-pages --depth=0 | ||
# - name: install dependencies | ||
# run: | | ||
# pip3 install -r requirements.txt | ||
|
||
# - name: deploy mkdocs latest | ||
# # run: mkdocs gh-deploy --force | ||
# # echo "deploy new version with mike..." | ||
# if: ${{ inputs.version == 'master'}} | ||
# run: | | ||
# mike deploy --push ${{ inputs.version }} ${{ inputs.alias }} --title=${{ inputs.title }}-latest | ||
# mike set-default ${{ inputs.alias }} --ignore | ||
# - name: deploy mkdocs version | ||
# if: ${{ inputs.version != 'master' }} | ||
# - name: Configure Git User | ||
# run: | | ||
# mike deploy --push ${{ inputs.version }} ${{ inputs.alias }} --title=${{ inputs.title }}-latest | ||
# mike set-default ${{ inputs.alias }} --ignore | ||
# if [[ "${{ inputs.delete_latest }}" == 'true' ]]; then | ||
# mike delete --push latest | ||
# fi | ||
# --title=${{ inputs.alias }}${latest} | ||
# run: mike delete --push 2.9a | ||
# git config user.name "jasonnovichrunai" | ||
# git config user.email "[email protected]" | ||
# # git fetch origin gh-pages --depth=0 | ||
|
||
# # - name: deploy mkdocs latest | ||
# # # run: mkdocs gh-deploy --force | ||
# # # echo "deploy new version with mike..." | ||
# # if: ${{ inputs.version == 'master'}} | ||
# # run: | | ||
# # mike deploy --push ${{ inputs.version }} ${{ inputs.alias }} --title=${{ inputs.title }}-latest | ||
# # mike set-default ${{ inputs.alias }} --ignore | ||
# # - name: deploy mkdocs version | ||
# # if: ${{ inputs.version != 'master' }} | ||
# # run: | | ||
# # mike deploy --push ${{ inputs.version }} ${{ inputs.alias }} --title=${{ inputs.title }}-latest | ||
# # mike set-default ${{ inputs.alias }} --ignore | ||
# # if [[ "${{ inputs.delete_latest }}" == 'true' ]]; then | ||
# # mike delete --push latest | ||
# # fi | ||
# # --title=${{ inputs.alias }}${latest} | ||
# # run: mike delete --push 2.9a | ||
|
||
# mike delete --push ${{ inputs.version }} | ||
# # mike delete --push ${{ inputs.version }} | ||
|
||
- name: deploy mkdocs | ||
run: | | ||
mike delete --push --all | ||
mike list | ||
# - name: deploy mkdocs | ||
# run: | | ||
# mike delete --push --all | ||
# mike list |