Skip to content

Commit

Permalink
ci: add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehmcc committed Jul 29, 2024
1 parent b74bbfd commit 6e288c8
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build-on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# Setup Repo
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

# Create tag based changelog
- name: Create changelog text
Expand All @@ -30,7 +30,7 @@ jobs:
with:
channel: stable
- name: Set up Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: 17
distribution: "temurin"
Expand Down Expand Up @@ -74,13 +74,17 @@ jobs:
# Create release
- name: Create Release
uses: actions/create-release@v1
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.changelog.outputs.changes }}

- name: Debug output
run: |
ls
ls outputs
# Now upload those assets
- name: Upload release assets
Expand Down

0 comments on commit 6e288c8

Please sign in to comment.