diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f44f58f..494e9f6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -153,6 +153,12 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Display git log + run: | + git log -1 --decorate + - name: Display git status + run: | + git status - name: Set up Python 3.10 uses: actions/setup-python@v5 with: @@ -160,14 +166,14 @@ jobs: - name: Development setup run: | make develop - - #-------- Publishing of package - - name: Display git log + - name: Display Python packages run: | - git log HEAD~..HEAD - - name: Display git status + pip list + - name: Display package version run: | - git status + python -m setuptools_scm + + #-------- Publishing of package - name: Build the distribution run: | make build