Skip to content

Commit

Permalink
next attempt2
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKunz committed Nov 19, 2024
1 parent 22b0832 commit 3354c37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-changelog-generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ jobs:
uses: ./.github/workflows/gradle-goal
with:
command: |
echo 'release_notes<<RELNOTESEOF' >> $GITHUB_OUTPUT
echo 'foo=bar' >> $GITHUB_OUTPUT
echo 'notes<<RELNOTESEOF' >> $GITHUB_OUTPUT
cat CHANGELOG.md >> $GITHUB_OUTPUT
printf '\nThis release is based on the following upstream versions:\n\n' >> $GITHUB_OUTPUT
./gradlew -q printUpstreamDependenciesMarkdown >> $GITHUB_OUTPUT
echo 'RELNOTESEOF' >> $GITHUB_OUTPUT
- name: Echo release notes
run: echo '${{ steps.generate_release_notes.outputs.release_notes }}'
run: echo '${{ steps.generate_release_notes.outputs.foo }}' && echo '${{ steps.generate_release_notes.outputs.notes }}'
# - name: Create GitHub Release
# env:
# GH_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 3354c37

Please sign in to comment.