Skip to content

Commit

Permalink
.github/workflows/ci.yml: package and distribute patchs
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreguillot committed Dec 9, 2024
1 parent eaa4476 commit da062d2
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,19 @@ jobs:
- name: Configure
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ env.build_type }} -DPARTIELS_BUILD_TAG=${{ env.tag_name }}
- name: Build
run: cmake --build ${{ github.workspace }}/build --target PartielsManual
run: |
cmake --build ${{ github.workspace }}/build --target PartielsManual
cmake --build ${{ github.workspace }}/build --target PartielsPatchs
- name: Artifact
uses: actions/[email protected]
with:
name: Partiels-Manual
path: ${{ github.workspace }}/build/Partiels-Manual.pdf
- name: Artifact
uses: actions/[email protected]
with:
name: Partiels-Patchs
path: ${{ github.workspace }}/build/Partiels-Patchs.zip
- name: Release
uses: softprops/action-gh-release@v2
if: ${{ env.is_tagged == 'true' }}
Expand All @@ -206,4 +213,6 @@ jobs:
fail_on_unmatched_files: true
generate_release_notes: true
body_path: ${{ github.workspace }}/build/Partiels-Release.md
files: ${{ github.workspace }}/build/Partiels-Manual.pdf
files: |
${{ github.workspace }}/build/Partiels-Manual.pdf
${{ github.workspace }}/build/Partiels-Patchs.zip

0 comments on commit da062d2

Please sign in to comment.