Skip to content

Commit c6e2f69

Browse files
Modify deployment workflow to install latest 'mike' (#73)
Updated the installation of the 'mike' package to the latest version.
1 parent 2cb082e commit c6e2f69

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/mike-deploy.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ jobs:
1818
python-version: '3.x'
1919
- name: Install dependencies
2020
run: |
21-
python -m pip install --upgrade pip
22-
pip install -r requirements/requirements.txt
23-
pip install mike==1.1.2
2421
python -m pip install --upgrade pip setuptools wheel
22+
pip install -r requirements/requirements.txt
23+
pip install mike
2524
- name: Config Git
2625
run: |
2726
git config user.name "$(git log -n 1 --pretty=format:%an)"
2827
git config user.email "$(git log -n 1 --pretty=format:%ae)"
2928
- name: Build package
3029
run: |
3130
git fetch origin zh-CN/deploy:zh-CN/deploy
32-
mike deploy --push --branch zh-CN/deploy --rebase ${{ github.ref_name }}
31+
mike deploy --push --branch zh-CN/deploy --rebase ${{ github.ref_name }}

0 commit comments

Comments
 (0)