mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Fix inspect-next-changelogs workflows (#3383)
* Fix inspect-next-changelogs workflows * Pass absolute path of CHANGELOG.md to the binary
This commit is contained in:
parent
6b9d1964eb
commit
4038a9794b
15
.github/workflows/inspect-next-changelogs.yml
vendored
15
.github/workflows/inspect-next-changelogs.yml
vendored
@ -22,17 +22,16 @@ jobs:
|
|||||||
toolchain: stable
|
toolchain: stable
|
||||||
|
|
||||||
- name: Build changelog generator
|
- name: Build changelog generator
|
||||||
run: cargo build --release -p changelog
|
run: cargo build --release -p changelog --
|
||||||
working-directory: tools
|
|
||||||
|
|
||||||
- name: Read yew changelog in this step
|
- name: Read yew changelog in this step
|
||||||
run: ./target/release/changelog yew minor -t ${{ secrets.GITHUB_TOKEN }}
|
shell: bash
|
||||||
working-directory: tools
|
run: ./target/release/changelog yew minor -t ${{ secrets.GITHUB_TOKEN }} -f "$(pwd)/CHANGELOG.md"
|
||||||
|
|
||||||
- name: Read yew-router changelog in this step
|
- name: Read yew-router changelog in this step
|
||||||
run: ./target/release/changelog yew-router minor -t ${{ secrets.GITHUB_TOKEN }}
|
shell: bash
|
||||||
working-directory: tools
|
run: ./target/release/changelog yew-router minor -t ${{ secrets.GITHUB_TOKEN }} -f "$(pwd)/CHANGELOG.md"
|
||||||
|
|
||||||
- name: Read yew-agent changelog in this step
|
- name: Read yew-agent changelog in this step
|
||||||
run: ./target/release/changelog yew-agent minor -t ${{ secrets.GITHUB_TOKEN }}
|
shell: bash
|
||||||
working-directory: tools
|
run: ./target/release/changelog yew-agent minor -t ${{ secrets.GITHUB_TOKEN }} -f "$(pwd)/CHANGELOG.md"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user