Skip to content

Add release notes for v0.3.0. #8

Add release notes for v0.3.0.

Add release notes for v0.3.0. #8

Workflow file for this run

name: Create Release
on:
push:
tags:
- "v*"
jobs:
ci:
uses: ./.github/workflows/ci.yml
release:
name: Create Release
needs: ci
runs-on: ubuntu-latest
permissions:
contents: write
# This permission is required for trusted publishing.
id-token: write
steps:
- name: Set build variables
run: |
echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.x"
- name: Get packages
uses: actions/[email protected]
with:
name: ${{ needs.ci.outputs.artifact-name }}
path: dist
- name: Install packages
run: pip install dist/*.whl
- name: Check version number
# Check that the setuptools_scm-generated version number is still the same when
# installed from a wheel with setuptools_scm not present.
run: |
set -x
test $(python -c "from travertino import __version__; print(__version__)") = $VERSION
- name: Create release
uses: ncipollo/[email protected]
with:
name: ${{ env.VERSION }}
draft: true
artifacts: dist/*
artifactErrorsFailBuild: true
- name: Publish release to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository_url: https://test.pypi.org/legacy/