Skip to content

Commit

Permalink
Update artifacts with documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrg committed Nov 28, 2024
1 parent 7179316 commit dfc40dd
Showing 1 changed file with 85 additions and 1 deletion.
86 changes: 85 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2198,4 +2198,88 @@ jobs:
with:
name: k95-manual-dist-vintage
path: ${{ github.workspace }}\dist\docs\manual
retention-days: 1
retention-days: 1

Update-x86-Artifact:
runs-on: windows-latest
needs: Build-Manual-Dist
steps:
- name: Fetch K95 x86
uses: actions/download-artifact@v4
with:
name: k95-vc14.2-x86
path: ${{ github.workspace }}\dist
- name: Fetch Manual
uses: actions/download-artifact@v4
with:
name: k95-manual-dist
path: ${{ github.workspace }}\dist\docs\manual
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: k95-x86
path: ${{ github.workspace }}\dist\docs\manual
retention-days: 1

Update-x86-64-Artifact:
runs-on: windows-latest
needs: Build-Manual-Dist
steps:
- name: Fetch K95 x86-64
uses: actions/download-artifact@v4
with:
name: k95-vc14.2-x64
path: ${{ github.workspace }}\dist
- name: Fetch Manual
uses: actions/download-artifact@v4
with:
name: k95-manual-dist
path: ${{ github.workspace }}\dist\docs\manual
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: k95-x86-64
path: ${{ github.workspace }}\dist\docs\manual
retention-days: 7

Update-arm32-Artifact:
runs-on: windows-latest
needs: Build-Manual-Dist
steps:
- name: Fetch K95 arm32
uses: actions/download-artifact@v4
with:
name: k95-vc14.2-x64_arm
path: ${{ github.workspace }}\dist
- name: Fetch Manual
uses: actions/download-artifact@v4
with:
name: k95-manual-dist
path: ${{ github.workspace }}\dist\docs\manual
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: k95-arm32
path: ${{ github.workspace }}\dist\docs\manual
retention-days: 7

Update-arm64-Artifact:
runs-on: windows-latest
needs: Build-Manual-Dist
steps:
- name: Fetch K95 arm32
uses: actions/download-artifact@v4
with:
name: k95-vc14.4-x64_arm64
path: ${{ github.workspace }}\dist
- name: Fetch Manual
uses: actions/download-artifact@v4
with:
name: k95-manual-dist
path: ${{ github.workspace }}\dist\docs\manual
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: k95-arm64
path: ${{ github.workspace }}\dist\docs\manual
retention-days: 7

0 comments on commit dfc40dd

Please sign in to comment.