Skip to content

Commit 0824284

Browse files
committed
chore(example-app): rename directory
1 parent 05ca60d commit 0824284

84 files changed

Lines changed: 14 additions & 6 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/prepare-example-app/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ runs:
88
shell: bash
99
run: npm run build
1010
- name: 'Install example app dependencies'
11-
working-directory: ./example-app-capacitor
11+
working-directory: ./example-app
1212
shell: bash
1313
run: npm i
1414
- name: 'Build Web example app'
15-
working-directory: ./example-app-capacitor
15+
working-directory: ./example-app
1616
shell: bash
1717
run: npm run build
1818
- name: 'Sync example app native platforms'
19-
working-directory: ./example-app-capacitor
19+
working-directory: ./example-app
2020
shell: bash
2121
run: npx cap sync

.github/workflows/continuous_integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: 'Prepare example app'
5050
uses: ./.github/actions/prepare-example-app
5151
- name: 'Build Android example app'
52-
working-directory: ./example-app-capacitor/android
52+
working-directory: ./example-app/android
5353
run: ./gradlew clean assembleDebug
5454

5555
build-example-app-ios:
@@ -63,5 +63,5 @@ jobs:
6363
- name: 'Prepare example app'
6464
uses: ./.github/actions/prepare-example-app
6565
- name: 'Build iOS example app'
66-
working-directory: ./example-app-capacitor/ios/App
66+
working-directory: ./example-app/ios/App
6767
run: xcodebuild clean build -workspace App.xcworkspace -scheme App CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO

.github/workflows/reusable_build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,11 @@ jobs:
2424

2525
- name: 'Build Packages'
2626
run: npm run build
27+
28+
- name: 'Check README.md changes'
29+
working-directory: ./packages/capacitor-plugin
30+
run: |
31+
if ! cmp --silent README.md README.md.original; then
32+
echo "Detected README.md changes; Do 'npm run build' to update the docs."
33+
exit 1
34+
fi
Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)