Skip to content

Commit

Permalink
ci: move v2 docs to root
Browse files Browse the repository at this point in the history
  • Loading branch information
F0rsaken committed May 11, 2024
1 parent 4956124 commit b1b79ec
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
# Build job
build_v3:
runs-on: ubuntu-latest
name: Build v3
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -56,6 +57,7 @@ jobs:

build_v2:
runs-on: ubuntu-latest
name: Build v2
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -90,10 +92,17 @@ jobs:
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Download all artifacts
- name: Download v2 artifact
uses: actions/download-artifact@v4
with:
name: v2
path: $GITHUB_WORKSPACE
- name: Download v3 artifact
uses: actions/download-artifact@v4
with:
name: v3
path: $GITHUB_WORKSPACE/v3

- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifacts as tar
Expand Down

0 comments on commit b1b79ec

Please sign in to comment.