Skip to content

Commit

Permalink
Build on py 3.6.15
Browse files Browse the repository at this point in the history
  • Loading branch information
danielebriggi committed May 22, 2024
1 parent 25ae065 commit 6f469fd
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@ name: Publish SqliteCloud 🐍 to PyPI πŸ“¦

on:
push:
branches:
- 'main'
# branches:
# - 'main'


jobs:
build-n-publish:
name: Build and publish SqliteCloud 🐍 to PyPI πŸ“¦
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.11
- name: Set up Python 3.6
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.6.15'
- name: Install pypa/setuptools
run: >-
python -m
Expand All @@ -34,8 +35,8 @@ jobs:
echo "Current Directory: $(pwd)"
rm -r src/SqliteCloud.egg-info
ls src/
- name: Publish distribution πŸ“¦ to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: src/dist/
password: ${{ secrets.PYPI_API_TOKEN }}
# - name: Publish distribution πŸ“¦ to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# packages-dir: src/dist/
# password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 6f469fd

Please sign in to comment.