Skip to content

Commit

Permalink
Don't try to release the version changelog body file
Browse files Browse the repository at this point in the history
  • Loading branch information
drewcassidy committed Aug 15, 2022
1 parent a0acb97 commit 4e25810
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cargo-test-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pip install yaclog~=1.1
yaclog show
echo "VERSION_TITLE=$(yaclog show -n)" >> $GITHUB_ENV
echo "$(yaclog show -mb)" >> RELEASE.md
echo "$(yaclog show -mb)" >> /tmp/RELEASE.md
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -45,6 +45,6 @@ jobs:
uses: softprops/action-gh-release@v1
with:
name: Version ${{ env.VERSION_TITLE }}
body_path: RELEASE.md
body_path: /tmp/RELEASE.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "generic_parameterize"
version = "0.1.0"
repository = "https://github.com/drewcassidy/generic-parameterize"
authors = ["Andrew Cassidy <[email protected]>"]
description = "A test parameterization macro that works on generic arguments"
keywords = ["template", "proc_macro", "procmacro", "test", "parameterize", "generic"]
Expand Down

0 comments on commit 4e25810

Please sign in to comment.