Compare commits

...

2 Commits

Author SHA1 Message Date
ilike2burnthing
5a27090abe Fix Dockerfile casing 2025-11-06 02:11:28 +00:00
flower
e505ea4fe4 Fix changelog building (#1611) 2025-11-06 00:52:46 +00:00
2 changed files with 5 additions and 6 deletions

View File

@@ -19,15 +19,14 @@ jobs:
id: github_changelog
run: |
changelog=$(git log $(git tag | tail -2 | head -1)..HEAD --no-merges --oneline)
changelog="${changelog//'%'/'%25'}"
changelog="${changelog//$'\n'/'%0A'}"
changelog="${changelog//$'\r'/'%0D'}"
echo "changelog=${changelog}" >> $GITHUB_ENV
echo "changelog<<EOF" >> $GITHUB_OUTPUT
echo "$changelog" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Create release
uses: softprops/action-gh-release@v2
with:
body: ${{ env.changelog }}
body: ${{ steps.github_changelog.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}

View File

@@ -1,4 +1,4 @@
FROM python:3.14-slim-bookworm as builder
FROM python:3.14-slim-bookworm AS builder
# Build dummy packages to skip installing them and their dependencies
RUN apt-get update \