From cabfbb4cfab4f1ff33d6db8ac55243198e7ff8de Mon Sep 17 00:00:00 2001 From: Pierre Guillot Date: Fri, 30 Aug 2024 18:15:39 +0200 Subject: [PATCH] .github/workflows/ci.yml --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67227868..99ef40c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/upload-artifact@v4.3.6 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' }} @@ -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