add changelog #58
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 | ||
# Reusable workflows are not supported with external organizations | ||
# copy and paste "jobs" from | ||
# https://github.com/hyperspy/.github/blob/main/.github/workflows/release_pure_python.yml | ||
# This workflow builds the wheels "on tag". | ||
# If run from the lumispy/lumispy repository, the wheels will be uploaded to pypi ; | ||
# otherwise, the wheels will be available as a github artefact. | ||
# This workflow overwrites the version in `lumispy/version.py` | ||
# with the tag | ||
on: | ||
push: | ||
# Sequence of patterns matched against refs/tags | ||
tags: | ||
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
jobs: | ||
package_and_test: | ||
name: Package and Test | ||
# Use the "reusable workflow" from the hyperspy organisation | ||
uses: package_and_test.yml@main | ||
upload_to_pypi: | ||
needs: [package_and_test] | ||
runs-on: ubuntu-latest | ||
name: Upload to pypi | ||
permissions: | ||
# IMPORTANT: this permission is mandatory for trusted publishing | ||
id-token: write | ||
steps: | ||
- name: Download dist | ||
uses: actions/download-artifact@v4 | ||
- name: Display downloaded files | ||
run: | | ||
ls -shR | ||
working-directory: dist | ||
- uses: pypa/gh-action-pypi-publish@release/v1 | ||
if: ${{ startsWith(github.ref, 'refs/tags/') && github.repository_owner == 'lumispy' }} | ||
# See https://docs.pypi.org/trusted-publishers/using-a-publisher/ | ||
create_github_release: | ||
# If zenodo is setup to create a DOI automatically on a GitHub release, | ||
# this step will trigger the mining of the DOI | ||
needs: upload_to_pypi | ||
permissions: | ||
contents: write | ||
name: Create GitHub Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Create Release | ||
if: ${{ startsWith(github.ref, 'refs/tags/') && github.repository_owner == 'lumispy' }} | ||
uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 |