Procházet zdrojové kódy

Merge pull request #314 from CloudVE/add_packaging_action

Add packaging action
Nuwan Goonasekera před 2 roky
rodič
revize
3461fbe32f
3 změnil soubory, kde provedl 39 přidání a 1 odebrání
  1. 37 0
      .github/workflows/deploy.yaml
  2. 1 0
      .github/workflows/integration.yaml
  3. 1 1
      tox.ini

+ 37 - 0
.github/workflows/deploy.yaml

@@ -0,0 +1,37 @@
+name: Publish cloudbridge to PyPI
+on:
+  release:
+    types: [published]
+  push:
+    tags:
+      - '*'
+jobs:
+  build-n-publish:
+    name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@master
+    - name: Set up Python 3.10
+      uses: actions/setup-python@v1
+      with:
+        python-version: 3.10
+    - name: Install dependencies
+      run: |
+        python3 -m pip install --upgrade pip setuptools
+        python3 -m pip install --upgrade twine wheel
+    - name: Create and check packages
+      run: |
+        python3 setup.py sdist bdist_wheel
+        twine check dist/*
+        ls -l dist
+    - name: Publish distribution 📦 to Test PyPI
+      uses: pypa/gh-action-pypi-publish@master
+      with:
+        password: ${{ secrets.TEST_PYPI_API_TOKEN }}
+        repository_url: https://test.pypi.org/legacy/
+        skip_existing: true
+    - name: Publish distribution 📦 to PyPI
+      if: github.event_name == 'release'
+      uses: pypa/gh-action-pypi-publish@master
+      with:
+        password: ${{ secrets.PYPI_API_TOKEN }}

+ 1 - 0
.github/workflows/integration.yaml

@@ -8,6 +8,7 @@ on:
   pull_request:
     branches:
       - master
+  workflow_dispatch: {}
 
 jobs:
   # Set the job key. The key is displayed as the job name

+ 1 - 1
tox.ini

@@ -6,7 +6,7 @@
 # running the tests.
 
 [tox]
-envlist = {py3.8,pypy}-{aws,azure,gcp,openstack,mock},lint
+envlist = {py3.10,pypy}-{aws,azure,gcp,openstack,mock},lint
 
 [testenv]
 commands = # see setup.cfg for options sent to nosetests and coverage