Skip to content

feat: plugin model with SourcePlugin ABC, registry, and DataBroker (#8) #3

feat: plugin model with SourcePlugin ABC, registry, and DataBroker (#8)

feat: plugin model with SourcePlugin ABC, registry, and DataBroker (#8) #3

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
runs-on: ubuntu-latest
concurrency: release
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install python-semantic-release
run: pip install python-semantic-release
- name: Run semantic release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
semantic-release version
semantic-release publish