reflex-google-auth 0.0.9a2__tar.gz → 0.0.9a3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/.github/workflows/publish.yml +3 -2
  2. {reflex_google_auth-0.0.9a2/custom_components/reflex_google_auth.egg-info → reflex_google_auth-0.0.9a3}/PKG-INFO +1 -1
  3. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3/custom_components/reflex_google_auth.egg-info}/PKG-INFO +1 -1
  4. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/.gitignore +0 -0
  5. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/README.md +0 -0
  6. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth/__init__.py +0 -0
  7. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth/decorator.py +0 -0
  8. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth/google_auth.py +0 -0
  9. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth/state.py +0 -0
  10. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth.egg-info/SOURCES.txt +0 -0
  11. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth.egg-info/dependency_links.txt +0 -0
  12. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth.egg-info/requires.txt +0 -0
  13. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/custom_components/reflex_google_auth.egg-info/top_level.txt +0 -0
  14. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/google_auth_demo/.gitignore +0 -0
  15. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/google_auth_demo/assets/favicon.ico +0 -0
  16. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/google_auth_demo/google_auth_demo/__init__.py +0 -0
  17. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/google_auth_demo/google_auth_demo/google_auth_demo.py +0 -0
  18. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/google_auth_demo/requirements.txt +0 -0
  19. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/google_auth_demo/rxconfig.py +0 -0
  20. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/pyproject.toml +0 -0
  21. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a3}/setup.cfg +0 -0
@@ -24,6 +24,7 @@ jobs:
24
24
  deploy:
25
25
  name: Deploy Demo App to Reflex Cloud
26
26
  runs-on: ubuntu-latest
27
+ needs: publish
27
28
  steps:
28
29
  - uses: actions/checkout@master
29
30
  - name: Set up Python 3.12
@@ -31,13 +32,13 @@ jobs:
31
32
  with:
32
33
  python-version: "3.12"
33
34
  - name: Set tagged version for deploy
34
- run: sed -e "s/^reflex-google-auth[ >=].*$/reflex-google-auth==${{ github.event.release.tag_name }}/" -i google_auth_demo/requirements.txt
35
+ run: sed -E "s/^reflex-google-auth([ >=].*)?$/reflex-google-auth==${{ github.event.release.tag_name }}/" -i google_auth_demo/requirements.txt
35
36
  - name: Deploy to ReflexCloud
36
37
  uses: reflex-dev/reflex-deploy-action@v2
37
38
  with:
38
39
  auth_token: ${{ secrets.REFLEX_AUTH_TOKEN }}
39
40
  project_id: ${{ secrets.REFLEX_PROJECT_ID }}
40
41
  app_directory: google_auth_demo
41
- extra_args: ${{ env.EXTRA_ARGS }}
42
+ extra_args: "--hostname google-auth-demo --env GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }} --env GOOGLE_CLIENT_SECRET=${{ secrets.GOOGLE_CLIENT_SECRET }} --env GOOGLE_REDIRECT_URI=${{ secrets.GOOGLE_REDIRECT_URI }}"
42
43
  dry_run: ${{ vars.DRY_RUN }}
43
44
  skip_checkout: "true"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: reflex-google-auth
3
- Version: 0.0.9a2
3
+ Version: 0.0.9a3
4
4
  Summary: Sign in with Google
5
5
  Author-email: Masen Furer <m_github@0x26.net>
6
6
  License: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: reflex-google-auth
3
- Version: 0.0.9a2
3
+ Version: 0.0.9a3
4
4
  Summary: Sign in with Google
5
5
  Author-email: Masen Furer <m_github@0x26.net>
6
6
  License: Apache-2.0