Explorar el Código

feat: Update firmware build workflow concurrency settings

This commit updates the concurrency settings and versioning handling in the firmware build workflow of the SubBrute application. Concurrency controls have been commented out and RELEASE_VERSION variable was set to empty string to handle version extraction properly.
DerSkythe hace 2 años
padre
commit
db596a7a05
Se han modificado 1 ficheros con 4 adiciones y 6 borrados
  1. 4 6
      .github/workflows/build-with-firmwware.yml

+ 4 - 6
.github/workflows/build-with-firmwware.yml

@@ -18,9 +18,9 @@ permissions:
   contents: write
   packages: write
 
-concurrency:
-  group: firmware-build-${{ vars.FIRMWARE_VERSION }}-${{ vars.RELEASE_VERSION }}
-  cancel-in-progress: false
+#concurrency:
+#  group: firmware-build-${{ vars.FIRMWARE_VERSION }}-${{ vars.RELEASE_VERSION }}
+#  cancel-in-progress: false
 
 jobs:
   build-and-upload:
@@ -29,8 +29,7 @@ jobs:
       REPO_SELF: ${{ vars.REPO_SELF }}
       APP_PATH: "applications_user/subbrute"
       RELATIVE_PATH: "applications/external/subbrute"
-      CURRENT_VERSION: ${{ vars.RELEASE_VERSION }}
-      RELEASE_VERSION: ${{ vars.RELEASE_VERSION }}
+      RELEASE_VERSION: ""
       APP_NAME: ""
       ZIP_NAME: ""
       ZIP_TAG: ""
@@ -94,7 +93,6 @@ jobs:
         env:
           GITHUB_TOKEN: ${{ secrets.FLIPPER_TOKEN }}
           INPUT_VERSION: ${{ inputs.version }}
-          CURRENT_VERSION: ${{ env.CURRENT_VERSION }}
         run: |
           $fwInfo = ((gh release view --json tagName,url -R ${{ matrix.url }}) | ConvertFrom-Json)
           cd '${{ env.APP_PATH }}'