From 694fa6bf5cbd380c35d1fbebc3da4ba6da53587e Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Thu, 1 May 2025 10:09:18 +0200 Subject: [PATCH] Fix publish workflow --- .github/workflows/publish.yaml | 10 ---------- .github/workflows/release.yaml | 12 ------------ CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- MODULE.bazel | 2 +- README.md | 2 +- 6 files changed, 5 insertions(+), 27 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 3dc6bce2..54bba3e4 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -8,16 +8,6 @@ on: required: true type: string - # Called from the release workflow: - workflow_call: - inputs: - tag_name: - required: true - type: string - secrets: - PUBLISH_TOKEN: - required: true - jobs: publish: uses: bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml@v0.0.4 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1d682496..2cbc08a0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -114,15 +114,3 @@ jobs: upload_url: ${{ needs.release.outputs.upload_url }} asset_path: source.tar.gz.intoto.jsonl overwrite: true - - # Publish to Bazel Central Registry. - # This call the .github/workflows/publish.yaml workflow. - publish_to_bazel_central_registry: - name: "Publish to Bazel Central Registry" - needs: package_source - uses: ./.github/workflows/publish.yaml - with: - tag_name: ${{ github.ref }} - secrets: - PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} - diff --git a/CHANGELOG.md b/CHANGELOG.md index b235644f..7eaa1d3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Changelog Future release ------------ -6.1.3 (2025-05-01) +6.1.4 (2025-05-01) ------------------ ### Build @@ -15,7 +15,7 @@ Future release **MODULE.bazel** ```bazel - bazel_dep(name = "ftxui", version = "6.1.3") + bazel_dep(name = "ftxui", version = "6.1.4") ``` **BUILD.bazel** diff --git a/CMakeLists.txt b/CMakeLists.txt index d15f5878..92c1bb88 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project(ftxui LANGUAGES CXX - VERSION 6.1.3 + VERSION 6.1.4 DESCRIPTION "C++ Functional Terminal User Interface." ) diff --git a/MODULE.bazel b/MODULE.bazel index b5c6807c..86e5ad09 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -3,7 +3,7 @@ # the LICENSE file. # FTXUI Module. -module(name = "ftxui", version = "6.1.3") +module(name = "ftxui", version = "6.1.4") # Build deps. bazel_dep(name = "rules_cc", version = "0.1.1") diff --git a/README.md b/README.md index f618ddc3..5d7de254 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.3 + GIT_TAG v6.1.4 ) FetchContent_GetProperties(ftxui)