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 @@ -72,11 +72,11 @@ jobs:
7272
7373 - name: Generate release notes
7474 run: |
75- echo "Automated nightly build from commit ${{ steps.get_sha.outputs.short_sha }}." > release_notes.txt
75+ echo "Automated build from commit ${{ steps.get_sha.outputs.short_sha }}." > release_notes.txt
7676 echo "" >> release_notes.txt
7777 echo "Changes since last release:" >> release_notes.txt
7878
79- LATEST_TAG=$(gh release list --limit 2 -- json tagName --jq '.[1].tagName' 2>/dev/null || echo "")
79+ LATEST_TAG=$(gh release list --json tagName --jq '.[1].tagName' 2>/dev/null || echo "")
8080
8181 if git rev-parse "$LATEST_TAG" >/dev/null 2>&1; then
8282 git log "$LATEST_TAG"..HEAD --pretty=format:"- %s" >> release_notes.txt
9494
9595 gh release delete "$TAG_NAME" -y || true
9696 gh release create "$TAG_NAME" "$MUOS_FILE" "$ONION_FILE"\
97- --title "Nightly Build $TAG_NAME" \
97+ --title "Build $TAG_NAME" \
9898 --notes-file release_notes.txt
9999
100100 - name: Prune old nightly builds (keep latest 10)
You can’t perform that action at this time.
0 commit comments