소스 검색

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 년 전
부모
커밋
872908c52a
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  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