-
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into sort_blocked_list
- Loading branch information
Showing
550 changed files
with
15,895 additions
and
11,348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,10 @@ | |
.gitignore | ||
.prettierignore | ||
.vscode/ | ||
|
||
node_modules | ||
*.md | ||
dist | ||
|
||
android/ | ||
ios/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Build Apps and Create Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "[0-9]+.[0-9]+.[0-9]+" | ||
|
||
jobs: | ||
build_ios: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Build iOS on Appflow | ||
uses: ionic-team/appflow-build@v1 | ||
with: | ||
token: ${{ secrets.APPFLOW_TOKEN }} | ||
app-id: 9f0851ec | ||
platform: iOS | ||
build-type: app-store | ||
certificate: Distribution | ||
destinations: Voyager App Store | ||
filename: iOS-${{ github.ref_name }}-${{ github.run_id }} | ||
upload-artifact: iOS-Build.zip | ||
|
||
build_android: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Build Android on Appflow | ||
uses: ionic-team/appflow-build@v1 | ||
with: | ||
token: ${{ secrets.APPFLOW_TOKEN }} | ||
app-id: 9f0851ec | ||
platform: Android | ||
build-type: release | ||
certificate: Voyager Play Store | ||
destinations: Voyager Play Store | ||
filename: Android-${{ github.ref_name }}-${{ github.run_id }} | ||
upload-artifact: Android-Build.zip | ||
|
||
create_release: | ||
needs: [build_ios, build_android] | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Download iOS Artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: iOS-Build.zip | ||
path: artifacts/ios | ||
|
||
- name: Download Android Artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: Android-Build.zip | ||
path: artifacts/android | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
generate_release_notes: true | ||
files: | | ||
artifacts/ios/* | ||
artifacts/android/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,5 @@ yarn-error.log* | |
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
vite.config.ts.timestamp-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
dist/ | ||
pnpm-lock.yaml | ||
pnpm-lock.yaml | ||
ios/ | ||
android/ | ||
vite.config.ts.timestamp-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"hooks": { | ||
"before:bump": "npx capacitor-set-version -v ${version} -b $BUILD" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.