reflex-google-auth 0.0.9a2__tar.gz → 0.0.9a4__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.9a4}/.github/workflows/publish.yml +5 -5
  2. {reflex_google_auth-0.0.9a2/custom_components/reflex_google_auth.egg-info → reflex_google_auth-0.0.9a4}/PKG-INFO +1 -1
  3. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4/custom_components/reflex_google_auth.egg-info}/PKG-INFO +1 -1
  4. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/.gitignore +0 -0
  5. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/README.md +0 -0
  6. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth/__init__.py +0 -0
  7. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth/decorator.py +0 -0
  8. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth/google_auth.py +0 -0
  9. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth/state.py +0 -0
  10. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth.egg-info/SOURCES.txt +0 -0
  11. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth.egg-info/dependency_links.txt +0 -0
  12. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth.egg-info/requires.txt +0 -0
  13. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/custom_components/reflex_google_auth.egg-info/top_level.txt +0 -0
  14. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/google_auth_demo/.gitignore +0 -0
  15. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/google_auth_demo/assets/favicon.ico +0 -0
  16. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/google_auth_demo/google_auth_demo/__init__.py +0 -0
  17. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/google_auth_demo/google_auth_demo/google_auth_demo.py +0 -0
  18. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/google_auth_demo/requirements.txt +0 -0
  19. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/google_auth_demo/rxconfig.py +0 -0
  20. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/pyproject.toml +0 -0
  21. {reflex_google_auth-0.0.9a2 → reflex_google_auth-0.0.9a4}/setup.cfg +0 -0
@@ -1,9 +1,8 @@
1
1
  name: Publish Component to PyPI
2
2
 
3
3
  on:
4
- push:
5
- tags:
6
- - "*"
4
+ release:
5
+ types: [published]
7
6
 
8
7
  jobs:
9
8
  publish:
@@ -24,6 +23,7 @@ jobs:
24
23
  deploy:
25
24
  name: Deploy Demo App to Reflex Cloud
26
25
  runs-on: ubuntu-latest
26
+ needs: publish
27
27
  steps:
28
28
  - uses: actions/checkout@master
29
29
  - name: Set up Python 3.12
@@ -31,13 +31,13 @@ jobs:
31
31
  with:
32
32
  python-version: "3.12"
33
33
  - 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
34
+ run: sed -E "s/^reflex-google-auth([ >=].*)?$/reflex-google-auth==${{ github.event.release.tag_name }}/" -i google_auth_demo/requirements.txt
35
35
  - name: Deploy to ReflexCloud
36
36
  uses: reflex-dev/reflex-deploy-action@v2
37
37
  with:
38
38
  auth_token: ${{ secrets.REFLEX_AUTH_TOKEN }}
39
39
  project_id: ${{ secrets.REFLEX_PROJECT_ID }}
40
40
  app_directory: google_auth_demo
41
- extra_args: ${{ env.EXTRA_ARGS }}
41
+ 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
42
  dry_run: ${{ vars.DRY_RUN }}
43
43
  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.9a4
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.9a4
4
4
  Summary: Sign in with Google
5
5
  Author-email: Masen Furer <m_github@0x26.net>
6
6
  License: Apache-2.0