Skip to content

Commit

Permalink
Display packages & version in publish workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Oct 9, 2024
1 parent bb88ded commit cc802f2
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,21 +153,27 @@ 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:
python-version: "3.10"
- 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
Expand Down

0 comments on commit cc802f2

Please sign in to comment.