Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
0.2.150
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed May 23, 2024
1 parent c37d57f commit a112fc1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -392,14 +392,15 @@ jobs:
- name: Create GitHub Release
env:
PRERELEASE_FLAG: "${{ fromJson(needs.host.outputs.val).announcement_is_prerelease && '--prerelease' || '' }}"
ANNOUNCEMENT_TITLE: "${{ fromJson(needs.host.outputs.val).announcement_title }}"
ANNOUNCEMENT_BODY: "${{ fromJson(needs.host.outputs.val).announcement_github_body }}"
REPO: "null/null"
run: |
args=""
# Write and read notes from a file to avoid quoting breaking things
echo "$ANNOUNCEMENT_BODY" > /tmp/notes.txt
echo "$ANNOUNCEMENT_BODY" > $RUNNER_TEMP/notes.txt
args="$args --title '${{ fromJson(needs.host.outputs.val).announcement_title }}' --notes-file /tmp/notes.txt"
args="$args --title $ANNOUNCEMENT_TITLE --notes-file $RUNNER_TEMP/notes.txt"
args="$args $PRERELEASE_FLAG"
gh release create "${{ needs.plan.outputs.tag }}" $args
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "axolotlsay"
description = "💬 a CLI for learning to distribute CLIs in rust"
version = "0.2.149"
version = "0.2.150"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mistydemeo/cargodisttest.git"
Expand Down

0 comments on commit a112fc1

Please sign in to comment.