Skip to content

docs: Add 'used by' section to the README #17

docs: Add 'used by' section to the README

docs: Add 'used by' section to the README #17

Workflow file for this run

name: dists
on: push
permissions:
contents: write
jobs:
build:
name: Build dists
runs-on: ubuntu-latest
if: github.repository_owner == 'pawamoy-insiders'
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v3
- name: Install build
run: python -m pip install build
- name: Build dists
run: python -m build
- name: Upload dists artifact
uses: actions/upload-artifact@v3
with:
name: mkdocstrings-insiders
path: ./dist/*
- name: Create release and upload assets
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./dist/*