Skip to content

Commit 1586001

Browse files
author
saul-data
committed
moved releases to Github actions
1 parent eeebcff commit 1586001

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.github/workflows/python-release.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -49,25 +49,25 @@ jobs:
4949
- name: Distribute python package
5050
run: python3 -m twine upload dist/* -u "__token__" -p ${{ secrets.PYPI_API_TOKEN }}
5151

52-
- uses: actions/checkout@v3
52+
# - uses: actions/checkout@v3
5353

54-
- name: Install dependencies
55-
run: |
56-
python -m pip install --upgrade pip
57-
python3 -m pip install --upgrade toml
54+
# - name: Install dependencies
55+
# run: |
56+
# python -m pip install --upgrade pip
57+
# python3 -m pip install --upgrade toml
5858

59-
- name: Update pyproject.toml version ${{ steps.get_version.outputs.VERSION }}
60-
run: python3 update_toml_release.py ${{ steps.get_version.outputs.VERSION }}
59+
# - name: Update pyproject.toml version ${{ steps.get_version.outputs.VERSION }}
60+
# run: python3 update_toml_release.py ${{ steps.get_version.outputs.VERSION }}
6161

62-
- name: Commit report
63-
continue-on-error: true
64-
run: |
65-
git config --global user.name 'Dataplane Actions'
66-
git config --global user.email 'saul-data@users.noreply.github.com'
67-
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
68-
git checkout "${GITHUB_REF:11}"
69-
git add pyproject.toml
70-
git commit -am "Automated TOML release update"
71-
git push
72-
# git diff --exit-code || git commit -am "Automated TOML release update"
73-
# git diff --exit-code || git push
62+
# - name: Commit report
63+
# continue-on-error: true
64+
# run: |
65+
# git config --global user.name 'Dataplane Actions'
66+
# git config --global user.email 'saul-data@users.noreply.github.com'
67+
# git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
68+
# git checkout "${GITHUB_REF:11}"
69+
# git add pyproject.toml
70+
# git commit -am "Automated TOML release update"
71+
# git push
72+
# # git diff --exit-code || git commit -am "Automated TOML release update"
73+
# # git diff --exit-code || git push

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "dataplane"
7-
version = "0.0.14"
7+
version = "0.0.0"
88
description = "The data engineering library to build robust, reliable and on time data pipelines in Python."
99
readme = "README.md"
1010
requires-python = ">=3.7"

0 commit comments

Comments
 (0)