Skip to content

Commit

Permalink
Extract to tempdir, so it's not in the way.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Oct 30, 2023
1 parent 2b358f9 commit 748aafd
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ikvm-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,23 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v2
- name: Download ikvm
continue-on-error: true
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: "ikvmnet/ikvm"
file: "doc.zip"
target: content/ikvm.zip
target: ${{ runner.temp }}/ikvm.zip
token: ${{ secrets.GITHUB_TOKEN }}
- name: Extract IKVM
continue-on-error: true
run: unzip content/ikvm.zip -d content/32.ikvm
run: unzip ${{ runner.temp }}/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
target: ${{ runner.temp }}/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
run: unzip ${{ runner.temp }}/ikvm-maven.zip -d content/33.ikvm-maven
- name: Install
run: npm install
- name: Generate
Expand Down

0 comments on commit 748aafd

Please sign in to comment.