initial commit #4
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: Build | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
workflow_dispatch: | |
jobs: | |
build_wheels: | |
name: Build wheels | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for all tags and branches | |
# Note: This step will overwrite the current version.py contained in this repository to keep it up-to-date during the build | |
- name: Retrieve version from git tags | |
id: version | |
run: | | |
echo "TAG_NAME=$(git describe --match "v*" --tags)" >> $GITHUB_OUTPUT | |
# Used to host cibuildwheel | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install package | |
run: python -m pip install . | |
- name: Build wheels | |
run: python -m pip wheel -w dist . | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
retention-days: 1 | |
path: ./dist/memory_logger*.whl | |
# Pre-release (anything that is not a tag) | |
- name: Upload Pre-Release Binary | |
uses: "marvinpinto/action-automatic-releases@latest" | |
if: "!startsWith(github.ref, 'refs/tags/v')" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Latest Release" | |
files: ./dist/memory_logger*.whl | |
# Release (tagged version starting with v*) | |
- name: Upload Release Binary | |
uses: "marvinpinto/action-automatic-releases@latest" | |
if: "startsWith(github.ref, 'refs/tags/v')" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
title: "Release ${{ steps.version.outputs.TAG_NAME }}" | |
files: ./dist/memory_logger*.whl |