Skip to content

Commit

Permalink
log url
Browse files Browse the repository at this point in the history
  • Loading branch information
juliankolbe committed Sep 17, 2024
1 parent d25e198 commit 1a39ca3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ jobs:

- name: Trim Upload URL
run: |
echo "Trimmed upload URL..."
echo "$(echo '${{ steps.create_release.outputs.upload_url }}' | sed 's/{.*}//')" > upload_url.txt
echo "Original URL: ${{ steps.create_release.outputs.upload_url }}"
TRIMMED_URL=$(echo '${{ steps.create_release.outputs.upload_url }}' | sed 's/{.*}//')
echo "Trimmed URL: $TRIMMED_URL"
echo $TRIMMED_URL > upload_url.txt
echo "UPLOAD_URL=$(cat upload_url.txt)" >> $GITHUB_ENV
- name: List files for debugging
Expand Down

0 comments on commit 1a39ca3

Please sign in to comment.