mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-09-12 04:01:35 +00:00
- Simplified CI to just build validation (no more failing tests/lints) - Combined release.yml and pypi.yml into single workflow - Simplified security.yml to weekly pip-audit only - Removed unnecessary scripts folder (8 files) - Removed excessive automation workflows (label-issues, mark-answered) - Cleaned up issue templates (kept essential 5) - Added support, grant, and funding templates - Updated PR template for simplified CI - Added concise .github/README.md
26 lines
487 B
YAML
26 lines
487 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags: ['v*']
|
|
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
environment: pypi
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- run: pip install build
|
|
- run: python -m build
|
|
- uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: dist/*
|
|
- uses: pypa/gh-action-pypi-publish@release/v1
|