Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
add fetch depth (#75)
Browse files Browse the repository at this point in the history
* Implement firebase integration for android and ios and implement deeplink for android

* native auth

* finish implement google and apple auth

* Implement google auth for android side

* Fixed auth on iphone implement google auth for android

* Implement auth flow before profile open

* Implement auth request

* Implement count visit if user login (just network)

* Polish code

* Implement apple auth for android side

* Implemement firebase crashlitics

* Implement placeholder for visited cocktails

* Fix linter issues

* Add fetch depth
  • Loading branch information
VovaStelmashchuk authored Jun 28, 2023
1 parent 7488265 commit a2425cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/nightly_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions-ecosystem/action-get-latest-tag@v1
id: get-latest-tag
- uses: actions-ecosystem/action-bump-semver@v1
Expand All @@ -27,7 +29,7 @@ jobs:
id: set-output
run: |
echo "mix_drinks_mobile_version_name=${{ steps.bump-semver.outputs.new_version }}" >> $GITHUB_OUTPUT
IFS='.' read -r major minor patch <<< "${{ steps.bump-semver.outputs.new_version }}"
mix_drinks_mobile_version_code=$((major * 10000 + minor * 100 + patch))
Expand Down Expand Up @@ -134,4 +136,4 @@ jobs:
env:
API_KEY: ${{ secrets.MIXDRINKS_IOS_APPSTORE_API_KEY_ID }}
API_ISSUER: ${{ secrets.MIXDRINKS_IOS_APPSTORE_ISSUER_ID }}
run: xcrun altool --output-format xml --upload-app -f output.ipa -t ios --apiKey $API_KEY --apiIssuer $API_ISSUER
run: xcrun altool --output-format xml --upload-app -f output.ipa -t ios --apiKey $API_KEY --apiIssuer $API_ISSUER
4 changes: 3 additions & 1 deletion .github/workflows/prod_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions-ecosystem/action-get-latest-tag@v1
id: get-latest-tag
- uses: actions-ecosystem/action-bump-semver@v1
Expand All @@ -25,7 +27,7 @@ jobs:
id: set-output
run: |
echo "mix_drinks_mobile_version_name=${{ steps.bump-semver.outputs.new_version }}" >> $GITHUB_OUTPUT
IFS='.' read -r major minor patch <<< "${{ steps.bump-semver.outputs.new_version }}"
mix_drinks_mobile_version_code=$((major * 10000 + minor * 100 + patch))
Expand Down

0 comments on commit a2425cc

Please sign in to comment.