Skip to content

Commit

Permalink
Add proper version output in versioning step
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Oct 13, 2023
1 parent 5f95adc commit 1ef17fe
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
name: Versioning
runs-on: ubuntu-latest

outputs:
version: ${{ steps.version.outputs.version }}

steps:

- uses: actions/checkout@v4
Expand All @@ -51,7 +54,7 @@ jobs:

uses: ./.github/workflows/publish.yaml
with:
version: ${{ needs.versioning.outputs.version }}
tag: latest
version: "${{ needs.versioning.outputs.version }}"
tag: "latest"
prerelease: true
draft: false

0 comments on commit 1ef17fe

Please sign in to comment.