diff --git a/.github/workflows/release-on-tag.yml b/.github/workflows/release-on-tag.yml index 60116d5..4a18a11 100644 --- a/.github/workflows/release-on-tag.yml +++ b/.github/workflows/release-on-tag.yml @@ -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 diff --git a/docs/README.md b/docs/README.md index aa01d8d..7277b48 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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.