mirror of
https://github.com/FlareSolverr/FlareSolverr.git
synced 2026-04-28 10:45:34 +02:00
Compare commits
2 Commits
63b6fc53e3
...
5a27090abe
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a27090abe | ||
|
|
e505ea4fe4 |
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
@@ -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 }}
|
||||
|
||||
|
||||
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user