Skip to content

Merge pull request #6 from NillionNetwork/test/versioncheck #2

Merge pull request #6 from NillionNetwork/test/versioncheck

Merge pull request #6 from NillionNetwork/test/versioncheck #2

Workflow file for this run

# Release workflow
# - Generates a new nada-dsl release, signes it and pushes it to PyPI when a PR is merged that updates the version number in pyproject.toml.
name: Create a new release
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
jobs:
checkversion:
runs-on: ubuntu-latest
outputs:
local_version_is_higher: ${{ steps.versioncheck.outputs.local_version_is_higher }}
local_version: ${{ steps.versioncheck.outputs.local_version }}
remote_version: ${{ steps.versioncheck.outputs.public_version }}
steps:
- uses: actions/checkout@v3
- name: Check pypi versions
uses: maybe-hello-world/pyproject-check-version@v4
id: versioncheck
with:
pyproject-path: "./pyproject.toml" # default value
- name: check output
run: |
echo "Output: ${{ steps.versioncheck.outputs.local_version_is_higher }}" # 'true' or 'false
echo "Local version: ${{ steps.versioncheck.outputs.local_version }}" # e.g., 0.1.1
echo "Public version: ${{ steps.versioncheck.outputs.public_version }}" # e.g., 0.1.0
github-release:
if: needs.checkversion.outputs.local_version_is_higher == 'true'
runs-on: ubuntu-latest
steps:
- name: Print release message
run: |
echo "Creating release: ${{ needs.checkversion.outputs.local_version }}"
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v3
# with:
# python-version: "3.10"
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install --upgrade build
# - name: Build package
# run: python -m build --no-isolation
# - name: Publish package
# run: |
# poetry config pypi-token.pypi ${{ secrets.NILLION_PYPI_TOKEN }}
# poetry publish