Skip to content

Commit

Permalink
Pass absolute path of CHANGELOG.md to the binary
Browse files Browse the repository at this point in the history
  • Loading branch information
ranile authored Aug 26, 2023
1 parent 1e8a33b commit 0a8c239
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/inspect-next-changelogs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ jobs:
run: cargo build --release -p changelog --

- name: Read yew changelog in this step
run: ./target/release/changelog yew minor -t ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: ./target/release/changelog yew minor -t ${{ secrets.GITHUB_TOKEN }} -f "$(pwd)/CHANGELOG.md"

- name: Read yew-router changelog in this step
run: ./target/release/changelog yew-router minor -t ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: ./target/release/changelog yew-router minor -t ${{ secrets.GITHUB_TOKEN }} -f "$(pwd)/CHANGELOG.md"

- name: Read yew-agent changelog in this step
run: ./target/release/changelog yew-agent minor -t ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: ./target/release/changelog yew-agent minor -t ${{ secrets.GITHUB_TOKEN }} -f "$(pwd)/CHANGELOG.md"

0 comments on commit 0a8c239

Please sign in to comment.