Просмотр исходного кода

feat: Update git tag creation process in firmware build workflow

This commit enhances the git tag creation process in the firmware build workflow. The actions now include generating a new release version number based on the previous one, storing the previous tag name, and updating the release notes generation accordingly. This improvement contributes to a more efficient and error-free tag management.
DerSkythe 2 лет назад
Родитель
Сommit
863b4d1759
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      .github/workflows/build-with-firmwware.yml

+ 1 - 1
.github/workflows/build-with-firmwware.yml

@@ -95,7 +95,7 @@ jobs:
           GITHUB_TOKEN: ${{ secrets.FLIPPER_TOKEN }}
           INPUT_VERSION: ${{ inputs.version }}
         run: |
-          Write-Output "::notice title=Version Number::v${{ inputs.version }}"
+          Write-Output "::notice title=Input Version Number::v${{ inputs.version }}"
           $fwInfo = ((gh release view --json tagName,url -R ${{ matrix.url }}) | ConvertFrom-Json)
           cd '${{ env.APP_PATH }}'
           $sha = (git rev-parse --verify HEAD)