Browse Source

Update description text entry in GitHub workflow

The description text entry field within the workflow_dispatch input has been updated to reflect changes in version selection. The default version choice is now the "NEXT" version rather than the current one. Additionally, some unnecessary code statements have been removed to make the workflow file cleaner and more efficient.
DerSkythe 2 years ago
parent
commit
872908c52a
1 changed files with 2 additions and 3 deletions
  1. 2 3
      .github/workflows/build-with-firmware.yml

+ 2 - 3
.github/workflows/build-with-firmware.yml

@@ -5,7 +5,7 @@ on:
   workflow_dispatch:
     inputs:
       version:
-        description: "Enter version to build or left empty for current version"
+        description: "Enter version to build or left empty for the NEXT version"
         required: false
         type: string
   push:
@@ -47,7 +47,7 @@ jobs:
             src-included: 0
           - firmware: official
             url: ${{ vars.REPO_OFFICIAL }}
-            version: "official"
+            version: official
             src-included: 0
     steps:
       - name: Copy Firmware Files
@@ -80,7 +80,6 @@ jobs:
       #
       - name: Remove other apps
         shell: pwsh
-        if: ${{ success() }}
         # rm to remove problem FAP which includes non-existent files
         run: |
           Remove-Item -Force -Recurse ./applications/debug -ErrorAction SilentlyContinue