mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-05-06 09:13:48 +08:00
Fix publish workflow
This commit is contained in:
parent
625915b52c
commit
694fa6bf5c
10
.github/workflows/publish.yaml
vendored
10
.github/workflows/publish.yaml
vendored
@ -8,16 +8,6 @@ on:
|
|||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
# Called from the release workflow:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
tag_name:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
secrets:
|
|
||||||
PUBLISH_TOKEN:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
uses: bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml@v0.0.4
|
uses: bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml@v0.0.4
|
||||||
|
12
.github/workflows/release.yaml
vendored
12
.github/workflows/release.yaml
vendored
@ -114,15 +114,3 @@ jobs:
|
|||||||
upload_url: ${{ needs.release.outputs.upload_url }}
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
||||||
asset_path: source.tar.gz.intoto.jsonl
|
asset_path: source.tar.gz.intoto.jsonl
|
||||||
overwrite: true
|
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 }}
|
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ Changelog
|
|||||||
Future release
|
Future release
|
||||||
------------
|
------------
|
||||||
|
|
||||||
6.1.3 (2025-05-01)
|
6.1.4 (2025-05-01)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
### Build
|
### Build
|
||||||
@ -15,7 +15,7 @@ Future release
|
|||||||
|
|
||||||
**MODULE.bazel**
|
**MODULE.bazel**
|
||||||
```bazel
|
```bazel
|
||||||
bazel_dep(name = "ftxui", version = "6.1.3")
|
bazel_dep(name = "ftxui", version = "6.1.4")
|
||||||
```
|
```
|
||||||
|
|
||||||
**BUILD.bazel**
|
**BUILD.bazel**
|
||||||
|
@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
|
|||||||
|
|
||||||
project(ftxui
|
project(ftxui
|
||||||
LANGUAGES CXX
|
LANGUAGES CXX
|
||||||
VERSION 6.1.3
|
VERSION 6.1.4
|
||||||
DESCRIPTION "C++ Functional Terminal User Interface."
|
DESCRIPTION "C++ Functional Terminal User Interface."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# the LICENSE file.
|
# the LICENSE file.
|
||||||
|
|
||||||
# FTXUI Module.
|
# FTXUI Module.
|
||||||
module(name = "ftxui", version = "6.1.3")
|
module(name = "ftxui", version = "6.1.4")
|
||||||
|
|
||||||
# Build deps.
|
# Build deps.
|
||||||
bazel_dep(name = "rules_cc", version = "0.1.1")
|
bazel_dep(name = "rules_cc", version = "0.1.1")
|
||||||
|
@ -372,7 +372,7 @@ include(FetchContent)
|
|||||||
|
|
||||||
FetchContent_Declare(ftxui
|
FetchContent_Declare(ftxui
|
||||||
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
|
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
|
||||||
GIT_TAG v6.1.3
|
GIT_TAG v6.1.4
|
||||||
)
|
)
|
||||||
|
|
||||||
FetchContent_GetProperties(ftxui)
|
FetchContent_GetProperties(ftxui)
|
||||||
|
Loading…
Reference in New Issue
Block a user