You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+29-18Lines changed: 29 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -158,6 +158,8 @@ jobs:
158
158
runs-on: ubuntu-latest
159
159
steps:
160
160
- uses: actions/checkout@v4
161
+
with:
162
+
fetch-depth: 0
161
163
- uses: actions/download-artifact@v4
162
164
with:
163
165
name: dashboard
@@ -166,33 +168,42 @@ jobs:
166
168
GH_TOKEN: ${{ github.token }}
167
169
run: |
168
170
VERSION="${{ github.ref_name }}"
169
-
AUTO_NOTES=$(gh api repos/${{ github.repository }}/releases/generate-notes -f tag_name="$VERSION" --jq '.body')
170
-
cat > release-notes.md << EOF
171
-
## PPG CLI Dashboard for macOS
172
171
173
-
The desktop dashboard gives you a visual control center for your parallel agent workflows — monitor status, view logs, and manage worktrees from a native macOS app.
172
+
# Find the previous tag to build changelog from commits
173
+
PREV_TAG=$(git tag --sort=-v:refname | grep '^v' | sed -n '2p')
174
174
175
-
### Download
175
+
# Build changelog from commit messages, filtering out internal-only changes
0 commit comments