mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 15:02:01 +00:00
docs.yml: fix changes from #230
i.e. every step must define a `uses` or `run` key
This commit is contained in:
parent
3a9cd95615
commit
5984e8a4f1
16
.github/workflows/docs.yml
vendored
16
.github/workflows/docs.yml
vendored
|
@ -11,19 +11,23 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
- uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up git username and address
|
||||||
run: |
|
run: |
|
||||||
git config user.name github-actions[bot]
|
git config user.name github-actions[bot]
|
||||||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
||||||
|
|
||||||
- name: Install Python
|
- name: Install Python
|
||||||
- uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
|
|
||||||
|
- name: Set cache key
|
||||||
|
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Handle cache
|
- name: Handle cache
|
||||||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
uses: actions/cache@v3
|
||||||
- uses: actions/cache@v3
|
|
||||||
with:
|
with:
|
||||||
key: mkdocs-material-${{ env.cache_id }}
|
key: mkdocs-material-${{ env.cache_id }}
|
||||||
path: .cache
|
path: .cache
|
||||||
|
@ -31,7 +35,7 @@ jobs:
|
||||||
mkdocs-material-
|
mkdocs-material-
|
||||||
|
|
||||||
- name: Install MkDocs dependencies
|
- name: Install MkDocs dependencies
|
||||||
- run: pip install -r requirements.docs.txt
|
run: pip install -r requirements.docs.txt
|
||||||
|
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
- run: mkdocs gh-deploy --force
|
run: mkdocs gh-deploy --force
|
||||||
|
|
Loading…
Reference in a new issue