From 93a56241c6437f94116b7e6f2fb3651847ee98d6 Mon Sep 17 00:00:00 2001 From: Firebelley Date: Thu, 17 Nov 2022 20:41:22 -0500 Subject: [PATCH] update docs --- .github/workflows/build-example.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-example.yml b/.github/workflows/build-example.yml index 8c240762..078f266c 100644 --- a/.github/workflows/build-example.yml +++ b/.github/workflows/build-example.yml @@ -36,5 +36,5 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} generateReleaseNotes: true - tag: ${{ steps.tag_version.outputs.TAG_VERSION }} + tag: v${{ steps.tag_version.outputs.TAG_VERSION }} artifacts: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action diff --git a/README.md b/README.md index 52ff6dda..7c46d753 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} generateReleaseNotes: true - tag: ${{ steps.tag_version.outputs.TAG_VERSION }} + tag: v${{ steps.tag_version.outputs.TAG_VERSION }} # Note that the 'v' in front was necessary to get this action attach artifacts to the tag artifacts: ${{ steps.export.outputs.archive_directory }}/* ```