Skip to content

Commit 4b89e0c

Browse files
👷 Update publish workflow (#10)
1 parent 2798f80 commit 4b89e0c

File tree

3 files changed

+19
-36
lines changed

3 files changed

+19
-36
lines changed

.github/workflows/pypi-publish.yaml

+11-28
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,15 @@
1-
# This workflows will upload a Python Package using Twine when a release is created
2-
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3-
4-
name: Upload Python Package
5-
1+
name: Publish python package
62
on:
7-
release:
8-
types: [created]
9-
3+
push:
4+
tags:
5+
- "v*.*.*"
106
jobs:
11-
deploy:
12-
7+
publish:
138
runs-on: ubuntu-latest
14-
159
steps:
16-
- uses: actions/checkout@v4
17-
- name: Set up Python
18-
uses: actions/setup-python@v5
19-
with:
20-
python-version: '3.x'
21-
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
pip install setuptools wheel twine
25-
- name: Build and publish
26-
env:
27-
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
28-
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
29-
run: |
30-
echo ${{github.event.release.tag_name}} > version.txt
31-
python setup.py sdist bdist_wheel
32-
twine upload dist/*
10+
- uses: actions/checkout@v4
11+
12+
- name: Build and publish to pypi
13+
uses: JRubics/[email protected]
14+
with:
15+
pypi_token: ${{ secrets.PYPI_TOKEN }}

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FastAPI Cloud Tasks
22

3-
Strongly typed background tasks with FastAPI and Google CloudTasks.
3+
Strongly typed background tasks with FastAPI and Google CloudTasks. This is a fork of [fastapi-gcp-tasks](https://github.com/adori/fastapi-gcp-tasks), updated with new features and bug fixes.
44

55
```mermaid
66
sequenceDiagram
@@ -30,7 +30,7 @@ sequenceDiagram
3030
## Installation
3131

3232
```
33-
pip install fastapi-cloud-tasks
33+
pip install fastapi-gcp-tasks
3434
```
3535

3636
## Key features
@@ -138,7 +138,7 @@ FastAPI Cloud Tasks works by putting the three together:
138138
### Local
139139

140140
Pre-requisites:
141-
- `pip install fastapi-cloud-tasks`
141+
- `pip install fastapi-gcp-tasks`
142142
- Install [cloud-tasks-emulator](https://github.com/aertje/cloud-tasks-emulator)
143143
- Alternatively install ngrok and forward the server's port
144144

@@ -237,7 +237,7 @@ DelayedRoute = DelayedRouteBuilder(
237237
pre_create_hook=oidc_task_hook(
238238
token=tasks_v2.OidcToken(
239239
# Service account that you created
240-
service_account_email="fastapi-cloud[email protected]",
240+
service_account_email="fastapi-gcp[email protected]",
241241
audience=base_url,
242242
),
243243
),
@@ -369,13 +369,13 @@ Check the file [fastapi_cloud_tasks/dependencies.py](fastapi_gcp_tasks/dependenc
369369

370370
## Contributing
371371

372-
- Run `pre-commit install` on your local to get pre-commit hook.
373-
- Make changes and raise a PR!
372+
- Run the `format.sh` and `lint.sh` scripts before raising a PR.
373+
- Add examples and/or tests for new features.
374374
- If the change is massive, open an issue to discuss it before writing code.
375375

376376
## License
377377

378-
This project is licensed under the terms of the MIT license. This project was forked from [fastapi-cloud-tasks](https://github.com/Adori/fastapi-cloud-tasks) under the MIT license. All changes made to the original project are also licensed under the MIT license.
378+
This project is licensed under the terms of the MIT license. This project was forked from [fastapi-gcp-tasks](https://github.com/Adori/fastapi-gcp-tasks) under the MIT license. All changes made to the original project are also licensed under the MIT license.
379379

380380
## Disclaimer
381381

examples/full/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
TASK_SERVICE_ACCOUNT = os.getenv(
2525
"TASK_SERVICE_ACCOUNT",
26-
default=f"fastapi-cloud-tasks@{TASK_PROJECT_ID}.iam.gserviceaccount.com",
26+
default=f"fastapi-gcp-tasks@{TASK_PROJECT_ID}.iam.gserviceaccount.com",
2727
)
2828

2929
TASK_QUEUE_PATH = queue_path(

0 commit comments

Comments
 (0)