Merge pull request #34 from shklqm/fix/sm/unmatched-tags #7
Workflow file for this run
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: Release | |
on: | |
push: | |
# release on tag push | |
tags: | |
- '*' | |
jobs: | |
packaging: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
env: | |
PYTHONIOENCODING: utf-8 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-latest, windows-latest] | |
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
steps: | |
- name: Set git crlf/eol | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel | |
pip install tox tox-gh-actions | |
- name: Build dist pkgs | |
run: | | |
tox -e build | |
- name: Upload artifacts | |
if: matrix.python-version == 3.7 && runner.os == 'Linux' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: packages | |
path: ./dist/pystache-* | |
create_release: | |
name: Create Release | |
needs: [packaging] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Get version | |
id: get_version | |
run: | | |
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV | |
echo ${{ env.VERSION }} | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# download all artifacts to project dir | |
- uses: actions/download-artifact@v2 | |
- name: Generate changes file | |
uses: sarnold/gitchangelog-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN}} | |
- name: Create release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.VERSION }} | |
name: Release ${{ env.VERSION }} | |
body_path: CHANGES.md | |
draft: false | |
prerelease: false | |
files: | | |
packages/pystache-* | |
# When a GitHub release is made, upload the artifacts to PyPI | |
upload: | |
name: Upload to PyPI | |
runs-on: ubuntu-20.04 | |
needs: [packaging] | |
steps: | |
- uses: actions/setup-python@v2 | |
- uses: actions/download-artifact@v2 | |
- name: check artifacts | |
run: find . -maxdepth 2 -name pystache-\* -type f | |
# - name: Publish bdist and sdist packages | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# password: ${{ secrets.PYPI_API_TOKEN }} | |
# packages_dir: packages/ | |
# print_hash: true |