File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3333 run : |
3434 # Fetch latest release info via gh CLI since github.event.release
3535 # isn't available with workflow_run trigger
36- TAG=$(gh release view --latest -- json tagName -q '.tagName')
37- DATE=$(gh release view --latest -- json publishedAt -q '.publishedAt' | cut -d'T' -f1)
36+ TAG=$(gh release view --json tagName -q '.tagName')
37+ DATE=$(gh release view --json publishedAt -q '.publishedAt' | cut -d'T' -f1)
3838 echo "tag=${TAG}" >> $GITHUB_OUTPUT
3939 echo "date=${DATE}" >> $GITHUB_OUTPUT
4040
4444 GH_TOKEN : ${{ github.token }}
4545 run : |
4646 # Get release body via gh CLI
47- gh release view --latest -- json body -q '.body' > /tmp/raw_body.txt
47+ gh release view --json body -q '.body' > /tmp/raw_body.txt
4848
4949 REPO_URL="https://github.com/${{ github.repository }}"
5050
You can’t perform that action at this time.
0 commit comments