Skip to content

Commit

Permalink
continue past download errors. add maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Sep 18, 2023
1 parent e5fa707 commit 990fdef
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/ikvm-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,28 @@ jobs:
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Download IKVM
- name: Download ikvm
continue-on-error: true
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'ikvmnet/ikvm'
file: 'doc.zip'
repo: "ikvmnet/ikvm"
file: "doc.zip"
target: content/ikvm.zip
token: ${{ secrets.GITHUB_TOKEN }}
- name: Extract IKVM
run: unzip content/ikvm.zip -d content
continue-on-error: true
run: unzip content/ikvm.zip -d content/32.ikvm
- name: Download ikvm-maven
continue-on-error: true
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: "ikvmnet/ikvm-maven"
file: "doc.zip"
target: content/ikvm-maven.zip
token: ${{ secrets.GITHUB_TOKEN }}
- name: Extract ikvm-maven
continue-on-error: true
run: unzip content/ikvm-maven.zip -d content/33.ikvm-maven
- name: Install
run: npm install
- name: Generate
Expand All @@ -44,6 +57,6 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 990fdef

Please sign in to comment.