Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
Move GitReleaseManager to the bottom since it is currently broken

Signed-off-by: Victor Chang <[email protected]>
  • Loading branch information
mocsharp authored Jun 13, 2024
1 parent 3501314 commit dd2c648
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,21 @@ jobs:
separator: "/"
msg: ${{ github.repository }}

- name: Unzip docs
if: ${{ contains(github.ref, 'refs/heads/main') }}
run: |
mkdir userguide
unzip artifacts/mig-docs-${{ env.SEMVER }}.zip -d userguide/
ls -lR userguide/
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
if: ${{ contains(github.ref, 'refs/heads/main') }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: userguide/
publish_branch: docs

- name: Install GitReleaseManager
uses: gittools/actions/gitreleasemanager/[email protected]
with:
Expand Down Expand Up @@ -636,18 +651,3 @@ jobs:
owner: ${{ steps.repo.outputs._0 }}
repository: ${{ steps.repo.outputs._1 }}
milestone: ${{ env.MAJORMINORPATCH }}

- name: Unzip docs
if: ${{ contains(github.ref, 'refs/heads/main') }}
run: |
mkdir userguide
unzip artifacts/mig-docs-${{ env.SEMVER }}.zip -d userguide/
ls -lR userguide/
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
if: ${{ contains(github.ref, 'refs/heads/main') }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: userguide/
publish_branch: docs

0 comments on commit dd2c648

Please sign in to comment.