Skip to content

git describe

git describe #6

Workflow file for this run

name: git describe
on:
workflow_dispatch:
jobs:
describe:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- run: pip install setuptools-git-versioning
- run: |
cd navground_py
setuptools-git-versioning
- run: git tag
- run: git describe --all
- run: git describe --tags --dirty