Skip to content

Commit

Permalink
release.py troubleshooting: check git log
Browse files Browse the repository at this point in the history
release.py is complaining that CHANGELOG is out of sync. How can that be?
  • Loading branch information
ajjackson committed Feb 10, 2025
1 parent 58e1c88 commit be924f4
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,39 @@ jobs:
version: ${{ inputs.version }}
push: true

build-sdist:
needs: prepare
name: Build and test sdist
uses: ./.github/workflows/build_sdist.yml
with:
ref: ${{ inputs.ref }}
# build-sdist:
# needs: prepare
# name: Build and test sdist
# uses: ./.github/workflows/build_sdist.yml
# with:
# ref: ${{ inputs.ref }}

build-wheels:
name: Build and test wheels
needs: prepare
# build-wheels:
# name: Build and test wheels
# needs: prepare

uses: ./.github/workflows/build_wheels.yml
with:
ref: ${{ inputs.ref }}
# uses: ./.github/workflows/build_wheels.yml
# with:
# ref: ${{ inputs.ref }}

release:
name: Github release
needs: [build-wheels,build-sdist]
# needs: [build-wheels,build-sdist]
needs: prepare
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
fetch-depth: 1
# fetch-depth: 1

- name: Git log, preview CHANGELOG
shell: bash -l {0}
run: |
git log | head -n 50
head CHANGELOG.rst
- uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit be924f4

Please sign in to comment.