Skip to content

Add hello.sh script for local and remote execution #1

Add hello.sh script for local and remote execution

Add hello.sh script for local and remote execution #1

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/shellflow
permissions:
contents: read
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
enable-cache: true
cache-dependency-glob: |
pyproject.toml
uv.lock
- name: Install dependencies
run: uv sync --all-groups
- name: Run release verification
run: |
uv run ruff format --check .
uv run ruff check .
uv run ty check src tests
uv run pytest -q
uv run behave features
- name: Build distributions
run: uv build
- name: Publish to PyPI
run: uv publish