Skip to content

Commit

Permalink
gha: Final refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Mar 21, 2021
1 parent 61e3b83 commit 5ed010d
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/build_wailord.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Build & Distribute"
name: "Build & Test"
on: [push, pull_request]
jobs:
ci:
Expand All @@ -24,14 +24,3 @@ jobs:
run: poetry run pytest
- name: Build project
run: poetry build
- name: Publish distribution 📦 to Test PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: poetry run twine upload --non-interactive -r testpypi dist/*
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: poetry run twine upload --non-interactive -r pypi dist/*
38 changes: 38 additions & 0 deletions .github/workflows/twine_uploader.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "Upload"
on: [push, pull_request]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
poetry-version: [1.0, 1.1.2]
os: [ubuntu-18.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Prep dependencies
run: poetry add twine && poetry install
- name: Test project
run: poetry run pytest
- name: Build project
run: poetry build
- name: Publish distribution 📦 to Test PyPI
if: startsWith(github.ref, 'refs/tags')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: poetry run twine upload --non-interactive -r testpypi dist/*
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: poetry run twine upload --non-interactive -r pypi dist/*

0 comments on commit 5ed010d

Please sign in to comment.