repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | name: Release |
| #2 | |
| #3 | on: |
| #4 | push: |
| #5 | tags: |
| #6 | - "v*" |
| #7 | |
| #8 | permissions: |
| #9 | contents: write |
| #10 | id-token: write |
| #11 | |
| #12 | jobs: |
| #13 | build-and-release: |
| #14 | runs-on: ubuntu-latest |
| #15 | steps: |
| #16 | - name: Checkout |
| #17 | uses: actions/checkout@v4 |
| #18 | |
| #19 | - name: Set up Python |
| #20 | uses: actions/setup-python@v5 |
| #21 | with: |
| #22 | python-version: "3.11" |
| #23 | |
| #24 | - name: Install build dependencies |
| #25 | run: | |
| #26 | python -m pip install --upgrade pip |
| #27 | pip install build |
| #28 | |
| #29 | - name: Build package |
| #30 | run: python -m build |
| #31 | |
| #32 | - name: Create GitHub Release |
| #33 | uses: softprops/action-gh-release@v2 |
| #34 | with: |
| #35 | files: dist/* |
| #36 | generate_release_notes: true |
| #37 | |
| #38 | - name: Publish to PyPI |
| #39 | uses: pypa/gh-action-pypi-publish@release/v1 |
| #40 |