From 53ef6aeaa6150fbfcf49a9d603af7f900ab53830 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 29 Jan 2023 18:44:28 -0600 Subject: [PATCH] Echo version and attempt release --- .github/workflows/create_tag.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/create_tag.yml b/.github/workflows/create_tag.yml index 97c26fb..70758ae 100644 --- a/.github/workflows/create_tag.yml +++ b/.github/workflows/create_tag.yml @@ -46,9 +46,15 @@ jobs: fi # Update the version - NEW_VERSION="v$MAJOR.$MINOR.$PATCH" + NEW_VERSION="$MAJOR.$MINOR.$PATCH" + echo $NEW_VERSION - - name: Create tag - run: | - git tag $NEW_VERSION - git push --tags + # - name: Create release + # uses: actions/create-release@v1 + # id: create_release + # with: + # release_name: Meshtastic Protobufs $NEW_VERSION + # tag_name: $NEW_VERSION + # body: Protobufs for version $NEW_VERSION release of Meshtastic firmware + # env: + # GITHUB_TOKEN: ${{ github.token }}