Skip to content

Commit

Permalink
Remove quotes around release description
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Dec 1, 2022
1 parent 3340d35 commit da32bb4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/trigger-release/trigger-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"/repos/rust-osdev/bootloader/releases",
"-f", f"tag_name={tag_name}", "-f", f"target_commitish={sha}",
"-f", f"name={tag_name}",
"-f", "body=\"[Changelog](https://github.com/rust-osdev/bootloader/blob/main/Changelog.md)\"",
"-f", "body=[Changelog](https://github.com/rust-osdev/bootloader/blob/main/Changelog.md)",
"-F", "draft=false", "-F", "prerelease=false", "-F", "generate_release_notes=false",
]
print(" Running `" + ' '.join(command) + '`')
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ members = [
exclude = ["examples/basic", "examples/test_framework"]

[workspace.package]
version = "0.11.0-beta.6" # don't forget to update `workspace.dependencies` below
version = "0.11.0-beta.7" # don't forget to update `workspace.dependencies` below
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-osdev/bootloader"

[workspace.dependencies]
bootloader_api = { version = "0.11.0-beta.6", path = "api" }
bootloader-x86_64-common = { version = "0.11.0-beta.6", path = "common" }
bootloader-x86_64-bios-common = { version = "0.11.0-beta.6", path = "bios/common" }
bootloader_api = { version = "0.11.0-beta.7", path = "api" }
bootloader-x86_64-common = { version = "0.11.0-beta.7", path = "common" }
bootloader-x86_64-bios-common = { version = "0.11.0-beta.7", path = "bios/common" }

[dependencies]
anyhow = "1.0.32"
Expand Down

0 comments on commit da32bb4

Please sign in to comment.