diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5e3c198..200235b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,11 +23,16 @@ jobs: - name: Run tests run: cargo test --verbose + - name: SHA + run: echo ${{ github.sha }} > Release.txt + - name: Release uses: softprops/action-gh-release@v0.1.15 id: tag with: - tag_name: v${{ inputs.VERSION_TAG }} + tag_name: ${{ inputs.VERSION_TAG }} + body_path: Release.txt + generate_release_notes: true files: target/release/rust-tcp-file-transfer