Merge branch 'staging' into v5.x #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Semantic Release and publish on PyPI | |
on: | |
push: | |
branches: | |
- v5.x | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Setup dependencies | |
run: | | |
npm install @semantic-release/git @semantic-release/exec --no-save | |
python3 -m pip install wheel twine | |
python3 -m pip install git+https://github.com/pypa/[email protected] | |
- name: Create Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
run: npx semantic-release |