Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
inputs:
version:
description: "version name. example v0.1.1"
description: "version name. example v0.1.1, v1.16.0-b0"
required: true

jobs:
Expand Down Expand Up @@ -182,6 +182,6 @@ jobs:
uses: goreleaser/goreleaser-action@v6.3.0
with:
version: latest
args: release --rm-dist --release-notes=CHANGELOG/CHANGELOG-${{ github.event.inputs.version }}.md
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rm-dist is removed from the latest Go releaser

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rm-dist is removed from the latest Go releaser

args: release --release-notes=CHANGELOG/CHANGELOG-${{ github.event.inputs.version }}.md
env:
GITHUB_TOKEN: ${{ secrets.FLYTE_BOT_PAT }}
2 changes: 1 addition & 1 deletion .github/workflows/generate_flyte_manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
next-version:
description: "version name. example v0.1.1"
description: "version name. example v0.1.1, v1.16.0-b0"
required: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
# The full version, including alpha/beta/rc tags. For example, 0.1.1, 1.16.0-b0
release = "1.16.0-b2"

# -- General configuration ---------------------------------------------------
Expand Down
Loading