Browse Source

CI: Update actions and build scripts to use new frontend directory

PatTheMav 10 months ago
parent
commit
4752be4b95
2 changed files with 3 additions and 3 deletions
  1. 2 2
      .github/actions/qt-xml-validator/action.yaml
  2. 1 1
      .github/scripts/.build.zsh

+ 2 - 2
.github/actions/qt-xml-validator/action.yaml

@@ -39,7 +39,7 @@ runs:
       uses: ./.github/actions/check-changes
       id: checks
       with:
-        checkGlob: 'UI/forms/**/*.ui'
+        checkGlob: 'frontend/forms/**/*.ui'
 
     - name: Validate XML 💯
       if: fromJSON(steps.checks.outputs.hasChangedFiles)
@@ -56,6 +56,6 @@ runs:
         if (( ${#CHANGED_FILES[@]} )); then
           if [[ '${{ inputs.failCondition }}' == never ]]; then set +e; fi
           xmllint \
-            --schema ${{ github.workspace }}/UI/forms/XML-Schema-Qt5.15.xsd \
+            --schema ${{ github.workspace }}/frontend/forms/XML-Schema-Qt5.15.xsd \
             --noout "${CHANGED_FILES[@]}"
         fi

+ 1 - 1
.github/scripts/.build.zsh

@@ -201,7 +201,7 @@ build() {
 
           rm -rf OBS.app
           mkdir OBS.app
-          ditto UI/${config}/OBS.app OBS.app
+          ditto frontend/${config}/OBS.app OBS.app
         }
       }
       popd