-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'mobile_release_2023_12_08' of github.com:fylein/fyle-mo…
…bile-app into mobile_release_2023_12_08
- Loading branch information
Showing
60 changed files
with
200 additions
and
163 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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: Appflow Release Branch | ||
|
||
on: | ||
push: | ||
branches: | ||
- mobile_release_* | ||
|
||
jobs: | ||
build-app: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Build Android with Appflow | ||
uses: ionic-team/appflow-build@v1 | ||
with: | ||
token: ${{ secrets.APPFLOW_TOKEN }} | ||
app-id: 32316914 | ||
platform: Android | ||
build-type: debug | ||
environment: staging | ||
native-config: staging | ||
upload-artifact: Android | ||
|
||
- uses: actions/download-artifact@v2 | ||
id: download | ||
with: | ||
name: 'Android' | ||
path: ./ | ||
|
||
- name: Rename file | ||
run: mv *.apk android.apk | ||
|
||
- name: Upload apk to Diawi | ||
uses: rnkdsh/action-upload-diawi@v1.2.0 | ||
id: diwaiAndroid | ||
with: | ||
token: ${{ secrets.DIAWI_TOKEN }} | ||
file: android.apk | ||
|
||
- name: Build iOS on Appflow | ||
uses: ionic-team/appflow-build@v1 | ||
with: | ||
token: ${{ secrets.APPFLOW_TOKEN }} | ||
app-id: 32316914 | ||
platform: iOS | ||
build-type: development | ||
certificate: Fyle signing | ||
environment: staging | ||
native-config: prod | ||
upload-artifact: ios | ||
|
||
- uses: actions/download-artifact@v2 | ||
id: ios | ||
with: | ||
name: 'ios' | ||
path: ./ | ||
|
||
- name: Rename file | ||
run: mv *.ipa ios.ipa | ||
|
||
- name: Upload ipa to diawi | ||
uses: rnkdsh/action-upload-diawi@v1.2.0 | ||
id: diwaiIos | ||
with: | ||
token: ${{ secrets.DIAWI_TOKEN }} | ||
file: ios.ipa | ||
|
||
- name: Get branch name | ||
id: get-branch | ||
uses: xom9ikk/split@v1 | ||
with: | ||
string: ${{ github.ref }} | ||
separator: refs/heads/ | ||
|
||
- name: Send Message to Slack | ||
uses: archive/github-actions-slack@v2.0.1 | ||
id: notify | ||
with: | ||
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }} | ||
slack-channel: C029QPGHSQL | ||
slack-text: ${{github.event.sender.login}} pushed to ${{github.ref_name}}. \r\n \r\n APK Link ${{steps.diwaiAndroid.outputs.url}} \r\n IPA link ${{steps.diwaiIos.outputs.url}} | ||
|
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -90,5 +90,6 @@ | |
&__more-options-btn-icon { | ||
width: 20px; | ||
height: 20px; | ||
color: $dark-grey; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -200,6 +200,7 @@ | |
margin-left: 4px; | ||
width: 16px; | ||
height: 16px; | ||
color: $brand-primary-light; | ||
} | ||
} | ||
|
||
|
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 |
---|---|---|
|
@@ -200,6 +200,7 @@ | |
margin-left: 4px; | ||
width: 16px; | ||
height: 16px; | ||
color: $brand-primary-light; | ||
} | ||
} | ||
|
||
|
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
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 |
---|---|---|
|
@@ -32,5 +32,7 @@ | |
&--icon { | ||
margin-bottom: -2px; | ||
color: $brand-primary-light; | ||
height: 18px; | ||
width: 18px; | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/app/shared/components/fy-policy-violation-info/fy-policy-violation-info.component.html
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.