diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58fffbb..439be93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,6 +106,7 @@ jobs: --locked \ --release \ --target=${{ matrix.target }} + cp target/${{ matrix.target }}/release/${{ env.NAME }} ${{ env.NAME }}_${{ matrix.target }} - name: Upload binaries uses: ncipollo/release-action@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index aa14a6f..cb1d884 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## [0.1.2] - 2023-10-05 + +- Fix release CI artifact uploads + ## [0.1.1] - 2023-10-05 - Fix license identifier in `Cargo.toml` @@ -13,3 +17,4 @@ Initial release! [0.1.0]: https://github.com/GaloisInc/yapall/releases/tag/v0.1.0 [0.1.1]: https://github.com/GaloisInc/yapall/releases/tag/v0.1.1 +[0.1.2]: https://github.com/GaloisInc/yapall/releases/tag/v0.1.2 diff --git a/Cargo.lock b/Cargo.lock index 3d48e3b..0b395f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1341,7 +1341,7 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "yapall" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "ascent", diff --git a/Cargo.toml b/Cargo.toml index 8b054d5..261ccf6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yapall" -version = "0.1.1" +version = "0.1.2" edition = "2021" license = "BSD-3-Clause" description = "Yet Another Pointer Analysis for LLVM"