Interpolate string properly

This commit is contained in:
Muhammad Hamza 2022-11-25 18:05:35 +05:00
parent 6dc1bda70a
commit de9c1ebb39
3 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ jobs:
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
- name: Release yew-agent
run: cargo release ${PUBLISH_LEVEL} --execute --no-confirm --package yew-agent
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm --package yew-agent
- name: Get tag
id: gettag

View File

@ -46,10 +46,10 @@ jobs:
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
- name: Release yew-router-macro
run: cargo release ${PUBLISH_LEVEL} --execute --no-confirm --package yew-router-macro
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm --package yew-router-macro
- name: Release yew-router
run: cargo release ${PUBLISH_LEVEL} --execute --no-confirm --package yew-router
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm --package yew-router
- name: Get tag
id: gettag

View File

@ -46,10 +46,10 @@ jobs:
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
- name: Release yew-macro
run: cargo release ${PUBLISH_LEVEL} --execute --no-confirm --package yew-macro
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm --package yew-macro
- name: Release yew
run: cargo release ${PUBLISH_LEVEL} --execute --no-confirm --package yew
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm --package yew
- name: Get tag
id: gettag