ci: define job output (#1940)
This commit is contained in:
parent
b561a370cd
commit
79aecac2da
3 changed files with 14 additions and 8 deletions
2
.github/workflows/ci-windows-build-msi.yml
vendored
2
.github/workflows/ci-windows-build-msi.yml
vendored
|
@ -16,6 +16,8 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
tag_name: ${{ steps.get_latest_release.tag_name }}
|
||||
steps:
|
||||
- id: get_latest_release
|
||||
uses: cardinalby/git-get-release-action@cedef2faf69cb7c55b285bad07688d04430b7ada
|
||||
|
|
|
@ -11,15 +11,17 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
tag_name: ${{ steps.get_latest_release.tag_name }}
|
||||
steps:
|
||||
- id: get_latest_release
|
||||
uses: cardinalby/git-get-release-action@cedef2faf69cb7c55b285bad07688d04430b7ada
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
with:
|
||||
latest: true
|
||||
draft: false
|
||||
prerelease: false
|
||||
- id: get_latest_release
|
||||
uses: cardinalby/git-get-release-action@cedef2faf69cb7c55b285bad07688d04430b7ada
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
with:
|
||||
latest: true
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
dispatch:
|
||||
name: dispatch to hub-tests
|
||||
|
|
|
@ -11,6 +11,8 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
outputs:
|
||||
tag_name: ${{ steps.get_latest_release.tag_name }}
|
||||
steps:
|
||||
- id: get_latest_release
|
||||
uses: cardinalby/git-get-release-action@cedef2faf69cb7c55b285bad07688d04430b7ada
|
||||
|
|
Loading…
Reference in a new issue