Skip to content

Commit eb88e53

Browse files
authored
Merge pull request #6 from alteryx/cleanup
Cleanup files and add release workflow
2 parents e597da9 + 3420f9b commit eb88e53

File tree

6 files changed

+22
-867
lines changed

6 files changed

+22
-867
lines changed

.github/workflows/release.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
release:
3+
types: [published]
4+
5+
name: Release
6+
jobs:
7+
pypi:
8+
name: PyPI Release
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Remove docs before release
13+
run: rm -rf docs/
14+
- name: PyPI Upload
15+
uses: FeatureLabs/gh-action-pypi-upload@v2
16+
env:
17+
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
18+
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
19+
TEST_PYPI_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
20+
TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}

.python-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We currently utilize GitHub Issues as our project management tool for datachecks
1212

1313
#### 1. Clone repo
1414
The code is hosted on GitHub, so you will need to use Git to clone the project and make changes to the codebase. Once you have obtained a copy of the code, you should create a development environment that is separate from your existing Python environment so that you can make and test changes without compromising your own work environment. Additionally, you must make sure that the version of Python you use is at least 3.8. Using `conda` you can use `conda create -n datachecks python=3.8` and `conda activate datachecks` before the following steps.
15-
* clone with `git clone [https://github.com/NabilFayak/datachecks.git]`
15+
* clone with `git clone [https://github.com/alteryx/Checkers.git]`
1616
* install in edit mode with:
1717
```bash
1818
# move into the repo

docs/source/release_notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Release Notes
33
**Future Releases**
44
* Enhancements
55
* Fixes
6+
* Cleanup files and add release workflow :pr:`6`
67
* Changes
78
* Documentation Changes
89
* Testing Changes

0 commit comments

Comments
 (0)