Skip to content

Commit

Permalink
Fix typo in conda-watch GH CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oshadura committed Mar 12, 2024
1 parent cb839f7 commit 6a6e0d1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/watch-conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
if: ${{ startsWith(steps.latest_version.outputs.version, '0.') }}
uses: jacobtomlinson/[email protected]
with:
find: "coffea==*"
replace: "coffea==${{ steps.latest_version.outputs.version }}"
find: ${{ steps.current_version.outputs.env_releasev0 }}
replace: ${{ steps.latest_version.outputs.version }}
include: "coffea-base/**"
regex: false

- name: Find and Replace Release Calver release
if: ${{ startsWith(steps.latest_version.outputs.version, '20') }}
Expand All @@ -53,9 +54,10 @@ jobs:
if: ${{ startsWith(steps.latest_version.outputs.version, '20') }}
uses: jacobtomlinson/[email protected]
with:
find: "coffea==*"
replace: "coffea==${{ steps.latest_version.outputs.version }}"
find: ${{ steps.current_version.outputs.env_release }}
replace: ${{ steps.latest_version.outputs.version }}
include: "coffea-dask/**"
regex: false

- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
Expand Down

0 comments on commit 6a6e0d1

Please sign in to comment.