diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0140999..021e630 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,3 +23,13 @@ jobs: PATREON_CLIENT_ID: ${{ secrets.PATREON_CLIENT_ID }} PATREON_CLIENT_SECRET: ${{ secrets.PATREON_CLIENT_SECRET }} PATREON_REFRESH_TOKEN: ${{ secrets.PATREON_REFRESH_TOKEN }} + release: + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/main' + steps: + - uses: actions/checkout@v2 + - name: Releases via Palisade + run: | + docker run --rm --name palisade -v $(pwd):/workspace -e GITHUB_TOKEN -e GITHUB_REF -e GITHUB_REPOSITORY --workdir /workspace ghcr.io/xe/palisade palisade github-action + env: + GITHUB_TOKEN: ${{ secrets.CR_PAT }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dfcf14..1304e05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,3 +5,11 @@ New site features will be documented here. ## 2.1.0 - Blogpost bodies are now present in the RSS feed + +## 2.0.1 + +Custom render RSS/Atom feeds + +## 2.0.0 + +Complete site rewrite in Rust diff --git a/templates/blog_rss.rs.xml b/templates/blog_rss.rs.xml index 4d1ce6e..15e3c82 100644 --- a/templates/blog_rss.rs.xml +++ b/templates/blog_rss.rs.xml @@ -11,11 +11,11 @@ @APP https://github.com/Xe/site @for post in posts { + https://christine.website/@post.link @post.front_matter.title https://christine.website/@post.link - + @post.date.to_rfc2822() - }