Skip to content

Merge pull request #313 from cgre-aachen/dev_gemgis2 #24

Merge pull request #313 from cgre-aachen/dev_gemgis2

Merge pull request #313 from cgre-aachen/dev_gemgis2 #24

Workflow file for this run

# This workflows will upload a Python Package using Twine when a release is created on the GemGIS Github repo
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: pypi
on:
release:
types: [created]
jobs:
deploy:

Check failure on line 12 in .github/workflows/pypi_release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pypi_release.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Need the tags so that setuptools-scm can form a valid version number
- name: Fetch git tags
run: git fetch origin 'refs/tags/*:refs/tags/*'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
#pip install setuptools wheel twine
#pip install -r requirements.txt
pip install gemgis[build]
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERS }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m build
#python setup.py sdist bdist_wheel
twine upload dist/*