Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/release-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,14 @@ jobs:
echo "EOF"
} >> "$GITHUB_OUTPUT"

- name: Get Release Title
id: get_release_title
run: echo "title=$(sed "s/\${TAG}/${{ github.ref_name }}/g" .github/RELEASE_TITLE.txt)" >> $GITHUB_OUTPUT

- name: Create Release
uses: softprops/action-gh-release@v2
with:
name: $(sed "s/\${TAG}/${{ github.ref_name }}/g" .github/RELEASE_TITLE.txt)
name: ${{ steps.get_release_title.outputs.title }}
body: ${{ steps.generate_notes.outputs.FINAL_BODY }}
tag_name: ${{ github.ref_name }}
draft: false
Expand Down
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ This directory contains the documentation for the `base` project.
- **[Deploying to Render.com](./render.md)**: Instructions for deploying the project to the Render.com platform.
- **[Merging `base` Into an Existing Repository](./merging-base.md)**: A guide on how to incorporate `base` into an existing project.
- **[Standard Repository Files](./standard-files.md)**: An explanation of the standard configuration files like `.gitignore`, `.editorconfig`, and `.gitattributes`.
- **[Using Prettier](./prettier.md)**: A guide to installing and using Prettier for code formatting.
- **[Repository Badges](./badges.md)**: An explanation of how to use and create repository badges.
- **[Maintaining `base` as a Template Repository](./template-repo.md)**: A guide for maintainers of this template, outlining best practices and administrative steps.