Skip to content

Commit

Permalink
fix silly publish regex
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Gaultney committed Feb 19, 2021
1 parent 266cb9a commit ebdba48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Set release notes name
run: |
export RELEASE_NAME_VERSION=${{ github.event.release.name }}
echo "RELEASE_NAME_VERSION=${RELEASE_NAME_VERSION:1}" >> $GITHUB_ENV
echo "RELEASE_NAME_VERSION=${RELEASE_NAME_VERSION}" >> $GITHUB_ENV
- name: Ensure new version is also set in CHANGES.md
run: |
grep --regexp "\[${RELEASE_NAME_VERSION}\]" CHANGES.md
grep --regexp "${RELEASE_NAME_VERSION}" CHANGES.md
- name: Setup & Build
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit ebdba48

Please sign in to comment.