Skip to content

Commit

Permalink
Fix publish release_id output
Browse files Browse the repository at this point in the history
  • Loading branch information
filfreire committed Oct 25, 2022
1 parent 79bc3d6 commit eb5fd1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ env:
jobs:
publish:
runs-on: ubuntu-latest
outputs:
release_id: ${{ steps.core_tag_and_release.outputs.id }}
steps:
- name: Checkout branch # Check out the release branch
uses: actions/checkout@v3
Expand Down Expand Up @@ -221,7 +223,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_id: ${{ steps.core_tag_and_release.outputs.id }}
release_id: ${{ needs.publish.outputs.release_id }}
tag_name: ${{ env.RELEASE_CORE_TAG }}
file: "./artifacts/**.rpm"
prerelease: ${{ env.IS_PRERELEASE }}
Expand Down

0 comments on commit eb5fd1d

Please sign in to comment.