Skip to content

Commit

Permalink
Merge pull request #39 from CIROH-UA/main
Browse files Browse the repository at this point in the history
merge
  • Loading branch information
sepehrkrz authored Oct 31, 2023
2 parents 8a03aa3 + 30c881e commit 3e84706
Show file tree
Hide file tree
Showing 7 changed files with 310 additions and 613 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/python-publish.yml

This file was deleted.

56 changes: 56 additions & 0 deletions .github/workflows/test-python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Test and Publish nwmurl to PyPi

on:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install dependencies
run: pip install setuptools wheel pytest python-dateutil requests

- name: Run pytest
run: pytest
publish:
runs-on: ubuntu-latest
environment: production
steps:

- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install dependencies
run: pip install setuptools wheel pytest python-dateutil requests

- name: Run pytest
run: pytest

- name: List Secrets
run: |
echo "Available secrets:"
env
- name: Build package
run: python setup.py sdist bdist_wheel

- name: Publish package if tests passed
if: success() # Only runs if the previous steps were successful
run: |
pip install twine==4.0.2
echo "PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}" # Print the API token for verification
twine upload -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/*
Loading

0 comments on commit 3e84706

Please sign in to comment.