Add output to extract changelog job
This commit is contained in:
parent
f621ebf225
commit
c28e835ac6
|
|
@ -27,10 +27,9 @@ jobs:
|
||||||
pattern: "${{ env.VERSION }}:" # Look for the version header (e.g., # 0.6.15-alpha:)
|
pattern: "${{ env.VERSION }}:" # Look for the version header (e.g., # 0.6.15-alpha:)
|
||||||
file: Changelog.md
|
file: Changelog.md
|
||||||
|
|
||||||
- name: Debug the extracted release notes
|
# Set the markdown output of the job
|
||||||
run: |
|
- name: Set markdown output
|
||||||
echo "Extracted Release Notes: ${{ steps.changelog.outputs.markdown }}"
|
run: echo "::set-output name=markdown::$(echo '${{ steps.changelog.outputs.markdown }}')"
|
||||||
echo "All outputs: ${{ steps.changelog.outputs }}"
|
|
||||||
|
|
||||||
publish-tauri:
|
publish-tauri:
|
||||||
needs: extract-changelog
|
needs: extract-changelog
|
||||||
|
|
@ -55,8 +54,7 @@ jobs:
|
||||||
|
|
||||||
- name: Debug the extracted release notes
|
- name: Debug the extracted release notes
|
||||||
run: |
|
run: |
|
||||||
echo "Extracted Release Notes: ${{ steps.changelog.outputs.markdown }}"
|
echo "Extracted Release Notes: ${{ needs.extract-changelog.outputs.markdown }}"
|
||||||
echo "All outputs: ${{ steps.changelog.outputs }}"
|
|
||||||
|
|
||||||
- name: install dependencies (ubuntu only)
|
- name: install dependencies (ubuntu only)
|
||||||
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
|
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue