diff --git a/.github/workflows/Pipeline.yml b/.github/workflows/Pipeline.yml index 5632e7888..155183dd7 100644 --- a/.github/workflows/Pipeline.yml +++ b/.github/workflows/Pipeline.yml @@ -2,9 +2,6 @@ name: Unit Testing, Coverage Collection, Package, Release, Documentation and Pub on: [ push ] -env: - PYTHON_LATEST: 3.9 - defaults: run: shell: bash @@ -51,7 +48,7 @@ jobs: runs-on: ubuntu-latest env: - PYTHON: ${{ env.PYTHON_LATEST }} + PYTHON: 3.9 outputs: python: ${{ env.PYTHON }} @@ -94,7 +91,7 @@ jobs: coverage-reports: ./coverage.xml Release: - name: Release Page on GitHub + name: 📝 Create 'Release Page' on GitHub runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags') @@ -191,7 +188,7 @@ jobs: retention-days: 1 PublishOnPyPI: - name: Publish to PyPI + name: 🚀 Publish to PyPI runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags') @@ -230,11 +227,11 @@ jobs: twine upload dist/* VerifyDocs: - name: 👍 Verify example snippets + name: 👍 Verify example snippets using Python 3.9 runs-on: ubuntu-latest env: - PYTHON: ${{ env.PYTHON_LATEST }} + PYTHON: 3.9 outputs: python: ${{ env.PYTHON }}