Skip to content

Commit

Permalink
Version 1.0.0 - Ready for the Wild
Browse files Browse the repository at this point in the history
- Smooshed `datetimeutils` and `typeutils` into a new package called `ccptools`
  • Loading branch information
CCP-Zeulix committed Apr 5, 2024
1 parent 04eb438 commit 7f25788
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Set up Python 2
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
- name: Install Dependencies 2
run: |
python --version
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel twine
- name: Run unit tests
- name: Run Unit Tests 2
run: |
python -m unittest discover -v -f ./tests
- name: Build and package
- name: Build and Package 2
run: |
echo WHATTHEHELL
pip freeze
python setup.py sdist bdist_wheel
- name: Publish to PyPI
- name: Publish to PyPI 2
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true

0 comments on commit 7f25788

Please sign in to comment.