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