diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 2e1707e..6d5e6b6 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -88,8 +88,9 @@ jobs: if: matrix.target.os == 'windows-latest' shell: msys2 {0} run: | - 7z a codex-${{ matrix.target.os }}-${{ matrix.target.cpu }}.zip -si:libcodex.dll < vendor/nim-codex/build/libcodex.dll - 7z a codex-${{ matrix.target.os }}-${{ matrix.target.cpu }}.zip -si:libcodex.h < vendor/nim-codex/library/libcodex.h + ZIPFILE=codex-${{ matrix.target.os }}-${{ matrix.target.cpu }}.zip + (cd vendor/nim-codex/build && 7z a -tzip "${GITHUB_WORKSPACE}/${ZIPFILE}" libcodex.dll) + (cd vendor/nim-codex/library && 7z a -tzip "${GITHUB_WORKSPACE}/${ZIPFILE}" libcodex.h) - name: Upload artifacts uses: actions/upload-artifact@v4 diff --git a/RELEASE.md b/RELEASE.md index 188c6cf..f51d013 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,4 @@ -## v0.0.7 (2025-10-13) +## v0.0.8 (2025-10-13) ### Notes - First release