diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0a376cae..5f2ab453 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -105,8 +105,12 @@ jobs: with: subject-path: source.tar.gz + - name: Rename source attestation + run: mv ${{ steps.attest_source.outputs.bundle-path }} source.tar.gz.intoto.jsonl + - name: "Upload source attestation" - uses: actions/upload-artifact@v3 + uses: shogo82148/actions-upload-release-asset@v1 with: - name: source.tar.gz.intoto.jsonl - path: ${{ steps.attest_source.outputs.bundle-path }} + upload_url: ${{ needs.release.outputs.upload_url }} + asset_path: source.tar.gz.intoto.jsonl + overwrite: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 75abcb9a..e40c5eac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Changelog Future release ------------ -6.1.6 (2025-05-01) +6.1.7 (2025-05-01) ------------------ ### Build @@ -15,7 +15,7 @@ Future release **MODULE.bazel** ```bazel - bazel_dep(name = "ftxui", version = "6.1.6") + bazel_dep(name = "ftxui", version = "6.1.7") ``` **BUILD.bazel** diff --git a/CMakeLists.txt b/CMakeLists.txt index 3bad92f9..d1631cdf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project(ftxui LANGUAGES CXX - VERSION 6.1.6 + VERSION 6.1.7 DESCRIPTION "C++ Functional Terminal User Interface." ) diff --git a/MODULE.bazel b/MODULE.bazel index c1ebdbff..d2e367eb 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -3,7 +3,7 @@ # the LICENSE file. # FTXUI Module. -module(name = "ftxui", version = "6.1.6") +module(name = "ftxui", version = "6.1.7") # Build deps. bazel_dep(name = "rules_cc", version = "0.1.1") diff --git a/README.md b/README.md index 51b6cb89..05ca9e3b 100644 --- a/README.md +++ b/README.md @@ -372,7 +372,7 @@ include(FetchContent) FetchContent_Declare(ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui - GIT_TAG v6.1.6 + GIT_TAG v6.1.7 ) FetchContent_GetProperties(ftxui)