Merge pull request #5 from NillionNetwork/test/versioncheck #1
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
# 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: | |
build: | |
runs-on: ubuntu-latest | |
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 | |
# 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 |