Fix Bazel Central Repository Workflow

This commit is contained in:
ArthurSonzogni
2025-04-30 11:51:27 +02:00
parent 4231c4903b
commit dc48c17065
6 changed files with 6 additions and 13 deletions

View File

@@ -231,7 +231,7 @@ jobs:
- name: "Create source package"
run: >
git archive --format=tar.gz --prefix=ftxui/ -o source.tar.gz HEAD
git archive --format=tar.gz -o source.tar.gz HEAD
- name: "Upload source package"
uses: shogo82148/actions-upload-release-asset@v1

View File

@@ -1,11 +1,4 @@
on:
# On new releases:
workflow_call:
inputs:
tag_name:
required: true
type: string
# On manual trigger:
workflow_dispatch:
inputs:

View File

@@ -4,7 +4,7 @@ Changelog
Future release
------------
6.1.0 (2025-04-29)
6.1.1 (2025-04-30)
-----------------
### Build
@@ -15,7 +15,7 @@ Future release
**MODULE.bazel**
```bazel
bazel_dep(name = "ftxui", version = "6.1.0")
bazel_dep(name = "ftxui", version = "6.1.1")
```
**BUILD.bazel**

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
project(ftxui
LANGUAGES CXX
VERSION 6.1.0
VERSION 6.1.1
DESCRIPTION "C++ Functional Terminal User Interface."
)

View File

@@ -3,7 +3,7 @@
# the LICENSE file.
# FTXUI Module.
module(name = "ftxui", version = "6.1.0")
module(name = "ftxui", version = "6.1.1")
# Build deps.
bazel_dep(name = "rules_cc", version = "0.1.1")

View File

@@ -372,7 +372,7 @@ include(FetchContent)
FetchContent_Declare(ftxui
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
GIT_TAG v6.1.0
GIT_TAG v6.1.1
)
FetchContent_GetProperties(ftxui)