diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index ff5d60dba..bd258f809 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -72,7 +72,7 @@ jobs: CURRENT_VERSION=$(xmllint --xpath ' string(/manifest/@*[local-name()="versionName" and namespace-uri()="http://schemas.android.com/apk/res/android"]) - ' src/Android/Properties/AndroidManifest.xml) + ' src/App/Platforms/Android/AndroidManifest.xml) # Error if version has not changed. if [[ "$NEW_VERSION" == "$CURRENT_VERSION" ]]; then @@ -93,7 +93,7 @@ jobs: uses: bitwarden/gh-actions/version-bump@main with: version: ${{ inputs.version_number }} - file_path: "src/Android/Properties/AndroidManifest.xml" + file_path: "src/App/Platforms/Android/AndroidManifest.xml" - name: Bump Version - iOS.Autofill uses: bitwarden/gh-actions/version-bump@main @@ -117,7 +117,7 @@ jobs: uses: bitwarden/gh-actions/version-bump@main with: version: ${{ inputs.version_number }} - file_path: "src/iOS/Info.plist" + file_path: "src/App/Platforms/iOS/Info.plist" - name: Setup git run: |