Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci/cd] auto publish to pypi on release #24

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 86 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Push to PyPI

on:
release:
types: [published]

jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/p/datago
permissions:
id-token: write
steps:
- uses: actions/checkout@v4

- name: Install linux deps
run: |
sudo apt-get update
sudo apt-get -y install libvips-dev libjpeg-turbo8-dev

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11.10"

- name: Install pybindgen
run: |
python3 -m pip install pybindgen
go install golang.org/x/tools/cmd/goimports@latest
go install github.com/go-python/gopy@latest

- name: Get next version
uses: reecetech/[email protected]
id: version
with:
scheme: calver
increment: patch

- name: Build python module
run: |
cd pkg
gopy pkg -author="Photoroom" -email="[email protected]" -name="datago" -version="${{ steps.version.outputs.version }}" .
export DESTINATION="../build"
mkdir -p $DESTINATION/datago
mv datago/* $DESTINATION/datago/.
mv setup.py $DESTINATION/.
mv Makefile $DESTINATION/.
mv README.md $DESTINATION/.
rm LICENSE MANIFEST.in
ls
cd ../build

- name: Install python module
run: |
ls
cd build
python3 -m pip install --user -v -e .

- name: Run the python unit tests
env:
DATAROOM_API_KEY: ${{ secrets.DATAROOM_API_KEY }}
DATAROOM_TEST_SOURCE: ${{ secrets.DATAROOM_TEST_SOURCE }}
DATAROOM_API_URL: ${{ secrets.DATAROOM_API_URL }}
run: |
ls
python3 -m pip install -r requirements.txt
pytest -xv python/tests/*

- name: Build the package
run: |
cd build
python3 setup.py sdist
mv dist ../.
cd ..
ls

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ $ sudo ldconfig
From the root of this project:

```bash
$ go build cmd/main/main.go
$ go build cmd/main.go
```

Running it:
Expand Down
2 changes: 1 addition & 1 deletion generate_python_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rm -rf $DESTINATION

# Build the python package via the gopy toolchain
cd pkg
gopy pkg -author="Photoroom" -email="[email protected]" -url="" -name="datago" -version="0.3" .
gopy pkg -author="Photoroom" -email="[email protected]" -url="" -name="datago" -version="0.0.1".
mkdir -p $DESTINATION/datago
mv datago/* $DESTINATION/datago/.
mv setup.py $DESTINATION/.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "datago"
version = "0.0.1"
version = "0.6"
authors = [
{ name="Photoroom", email="[email protected]" },
]
Expand Down
Loading