From 4e25810203b176fe6b012eaa9d344c364e361333 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Sun, 14 Aug 2022 17:46:44 -0700 Subject: [PATCH] Don't try to release the version changelog body file --- .github/workflows/cargo-test-publish.yaml | 4 ++-- Cargo.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cargo-test-publish.yaml b/.github/workflows/cargo-test-publish.yaml index 390e3c4..2e21b5c 100644 --- a/.github/workflows/cargo-test-publish.yaml +++ b/.github/workflows/cargo-test-publish.yaml @@ -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 @@ -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 }} diff --git a/Cargo.toml b/Cargo.toml index 39fd20e..716862e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "generic_parameterize" version = "0.1.0" +repository = "https://github.com/drewcassidy/generic-parameterize" authors = ["Andrew Cassidy "] description = "A test parameterization macro that works on generic arguments" keywords = ["template", "proc_macro", "procmacro", "test", "parameterize", "generic"]