fixup #36
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 new version | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
# Build and configure package(s) | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
architecture: x64 | |
python-version: '3.11' | |
- name: Build packages | |
run: | | |
python tools/fetch_revealjs.py | |
pip install flit | |
flit build | |
- name: Store filepath | |
id: store-filepath | |
run: | | |
echo ::set-output name=targz::$(basename $(ls dist/*tar.gz)) | |
echo ::set-output name=wheel::$(basename $(ls dist/*whl)) | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist-packages | |
path: dist | |
outputs: | |
package-targz: ${{ steps.store-filepath.outputs.targz }} | |
package-wheel: ${{ steps.store-filepath.outputs.wheel }} | |
# Collect information from tagged release | |
prepare: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check stage from tag | |
id: parse-tag | |
run: | | |
echo ::set-output name=is-core-release::$(echo ${{ github.ref_name }} | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$'|wc -l) | |
outputs: | |
is-prerelease: ${{ steps.parse-tag.outputs.is-core-release != '1' }} | |
is-release: ${{ steps.parse-tag.outputs.is-core-release == '1' }} | |
publish-pypi: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- prepare | |
if: success() && ${{ needs.prepare.outputs.is-release }} | |
steps: | |
- uses: actions/[email protected] | |
with: | |
name: dist-packages | |
path: dist/ | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
github-releases: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- prepare | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dist-packages | |
path: dist/ | |
- name: Create release on GitHub | |
id: create-release | |
uses: actions/create-release@latest | |
with: | |
tag_name: ${{ github.ref_name }} | |
release_name: Release ${{ github.ref_name }} | |
body_path: .github/release-body.md | |
body: | | |
To know update details, please see [Changelog](https://sphinx-revealjs.readthedocs.io/en/stable/changes/) of documentation. | |
draft: false | |
prerelease: ${{ needs.prepare.outputs.is-prerelease }} | |
- name: Upload sdist to GitHub | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ steps.create-release.outputs.upload_url }} | |
asset_path: dist/${{ needs.build.outputs.package-targz }} | |
asset_name: ${{ needs.build.outputs.package-targz }} | |
asset_content_type: application/gzip | |
- name: Upload wheel to GitHub | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ steps.create-release.outputs.upload_url }} | |
asset_path: dist/${{ needs.build.outputs.package-wheel }} | |
asset_name: ${{ needs.build.outputs.package-wheel }} | |
asset_content_type: application/zip |