Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ci pipeline #306

Merged
merged 2 commits into from
Jan 26, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/api_doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,17 @@ jobs:
sync_file:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- uses: actions/setup-go@v3
with:
go-version: '1.19'
- uses: actions/setup-go@v5
- name: Checkout Envd-docs
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
path: envd-docs
- name: Checkout Envd
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'tensorchord/envd'
fetch-depth: 1
Expand All @@ -32,7 +30,7 @@ jobs:
mkdir -p envd-docs/hack/api/
cp -r envd/envd/api/* envd-docs/hack/api/
- name: Checkout Envd lib
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'tensorchord/envdlib'
fetch-depth: 1
Expand Down Expand Up @@ -63,7 +61,7 @@ jobs:
make generate-cli-ref
popd
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
path: envd-docs
add-paths: |
Expand Down
Loading