Fix branch check #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: build mreg-cli | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+*' | |
concurrency: | |
group: build-mreg-cli-${{ github.head_ref }} | |
jobs: | |
build_pypi: | |
name: Build wheels and source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#determining-when-to-use-contexts | |
- name: Exit if not on master branch | |
if: ${{ github.ref == 'refs/heads/master' }} | |
run: exit -1 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v2 | |
- name: Set up Python 3.12 | |
run: uv python install 3.12 | |
- name: Install build dependencies | |
run: | | |
uv venv | |
uv pip install --upgrade build | |
- name: Build source distribution | |
run: uv run python -m build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pypi_artifacts | |
path: dist/* | |
if-no-files-found: error | |
build_pyinstaller: | |
name: Build pyinstaller binary | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: | |
- '3.12' | |
include: | |
- os: ubuntu-latest | |
container: redhat/ubi8:latest | |
runs-on: ${{ matrix.os }} | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- name: Install RHEL 8 dependencies | |
if: contains(matrix.container, 'redhat/ubi8') | |
run: dnf install -y git binutils | |
- name: Ensure git is available | |
run: git --version | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
run: uv python install ${{ matrix.python-version }} | |
- name: Run PyInstaller with Tox | |
run: | | |
uv venv | |
uv pip install tox-uv tox-gh-actions | |
uv run tox | |
- name: Rename binary | |
run: | | |
mv dist/mreg-cli${{ contains(matrix.os, 'windows') && '.exe' || '' }} dist/mreg-cli-${{ matrix.os }}-${{ matrix.python-version }}${{ contains(matrix.os, 'windows') && '.exe' || '' }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: mreg-cli-${{ matrix.os }}-${{ matrix.python-version }}${{ contains(matrix.os, 'windows') && '.exe' || '' }} | |
path: dist/mreg-cli-${{ matrix.os }}-${{ matrix.python-version }}${{ contains(matrix.os, 'windows') && '.exe' || '' }} | |
if-no-files-found: error | |
publish_pypi: | |
name: Publish PyPI release | |
needs: | |
- build_pypi | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: pypi_artifacts | |
path: dist | |
- name: Push build artifacts to PyPI | |
uses: pypa/[email protected] | |
publish_github: | |
name: Publish GitHub release | |
needs: | |
- build_pypi | |
- build_pyinstaller | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download PyInstaller binaries | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: mreg-cli-* | |
path: dist | |
merge-multiple: true | |
- name: Download wheel and source distributions | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: pypi_artifacts | |
path: dist | |
merge-multiple: true | |
- name: Create GitHub release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: dist/* | |
body: | | |
Release ${{ github.ref_name }} | |
draft: false | |
prerelease: false | |