diff --git a/.github/workflows/create_tag.yml b/.github/workflows/create_tag.yml index a438f22..c3c2910 100644 --- a/.github/workflows/create_tag.yml +++ b/.github/workflows/create_tag.yml @@ -48,15 +48,14 @@ jobs: fi # Update the version - NEW_VERSION="$MAJOR.$MINOR.$PATCH" - echo $NEW_VERSION + echo "NEW_VERSION='v$MAJOR.$MINOR.$PATCH'" >> $GITHUB_OUTPUT - # - name: Create release - # uses: actions/create-release@v1 - # id: create_release - # with: - # release_name: Meshtastic Protobufs ${{ steps.version.outputs.NEW_VERSION }} - # tag_name: $NEW_VERSION - # body: Protobufs for version ${{ steps.version.outputs.NEW_VERSION }} release of Meshtastic firmware - # env: - # GITHUB_TOKEN: ${{ github.token }} + - name: Create release + uses: actions/create-release@v1 + id: create_release + with: + release_name: Meshtastic Protobufs ${{ steps.version.outputs.NEW_VERSION }} + tag_name: $NEW_VERSION + body: Protobufs for version ${{ steps.version.outputs.NEW_VERSION }} release of Meshtastic firmware + env: + GITHUB_TOKEN: ${{ github.token }}