Skip to content

Commit

Permalink
Fix inspect-next-changelogs workflows (#3383)
Browse files Browse the repository at this point in the history
* Fix inspect-next-changelogs workflows

* Pass absolute path of CHANGELOG.md to the binary
  • Loading branch information
ranile authored Sep 2, 2023
1 parent 6b9d196 commit 4038a97
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/inspect-next-changelogs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,16 @@ jobs:
toolchain: stable

- name: Build changelog generator
run: cargo build --release -p changelog
working-directory: tools
run: cargo build --release -p changelog --

- name: Read yew changelog in this step
run: ./target/release/changelog yew minor -t ${{ secrets.GITHUB_TOKEN }}
working-directory: tools
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 }}
working-directory: tools
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 }}
working-directory: tools
shell: bash
run: ./target/release/changelog yew-agent minor -t ${{ secrets.GITHUB_TOKEN }} -f "$(pwd)/CHANGELOG.md"

0 comments on commit 4038a97

Please sign in to comment.