Skip to content

Commit

Permalink
.github/workflows/ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreguillot committed Aug 30, 2024
1 parent ceaa832 commit cabfbb4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,12 @@ 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 build --target PartielsManual
zip -jr Partiels-Manual.zip ${{ github.workspace }}/build/Manual
run: cmake --build build --target PartielsManual
- name: Artifact
uses: actions/[email protected]
with:
name: Partiels-Manual
path: ${{ github.workspace }}/Partiels-Manual.zip
path: ${{ github.workspace }}/build/Partiels-Manual.pdf
- name: Release
uses: softprops/action-gh-release@v2
if: ${{ env.is_tagged == 'true' }}
Expand All @@ -185,4 +183,4 @@ jobs:
fail_on_unmatched_files: true
generate_release_notes: true
body_path: ${{ github.workspace }}/build/Partiels-Release.md
files: ${{ github.workspace }}/Partiels-Manual.zip
files: ${{ github.workspace }}/build/Partiels-Manual.pdf

0 comments on commit cabfbb4

Please sign in to comment.