10 Commits
v1.1.0 ... main

Author SHA1 Message Date
Gitea Actions
490473af3f Update manifest version to 1.1.3 [▶️] 2025-12-09 22:58:13 +00:00
fbd187441c Merge branch 'main' of https://git.icc.gg/ivancarlos/simplebentopdf
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 13s
2025-12-09 19:57:53 -03:00
c087594219 universalize 2025-12-09 19:57:41 -03:00
Gitea Actions
b06574e78d Update manifest version to 1.1.2 [▶️] 2025-12-09 22:17:23 +00:00
b0a0d81554 Merge branch 'main' of https://git.icc.gg/ivancarlos/simplebentopdf
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 24m47s
2025-12-09 19:17:07 -03:00
2fc8d9239b update universal 2025-12-09 19:16:17 -03:00
Gitea Actions
41a6a2c814 Update manifest version to 1.1.1 [▶️] 2025-12-09 22:01:50 +00:00
f4914652f5 Merge branch 'main' of https://git.icc.gg/ivancarlos/simplebentopdf
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 9m56s
2025-12-09 19:01:31 -03:00
214b907be1 update universal 2025-12-09 19:00:30 -03:00
909b4895ba Update manifest.json
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 12s
2025-12-09 21:46:54 +00:00
4 changed files with 28 additions and 10 deletions

View File

@@ -327,16 +327,25 @@ jobs:
# ----- Docker steps -----
- name: Clone Upstream Code (if needed)
if: steps.check_commits.outputs.commit_count != '0' && steps.check_upstream.outputs.upstream_needs_update == 'true'
if: steps.check_commits.outputs.commit_count != '0' && (steps.check_upstream.outputs.upstream_needs_update == 'true' || steps.check_upstream.outputs.repo_url != '')
run: |
rm -rf upstream_src
git clone --depth 1 --branch ${{ steps.check_upstream.outputs.repo_branch }} ${{ steps.check_upstream.outputs.repo_url }} upstream_src
rm -rf upstream_src
git clone --depth 1 --branch ${{ steps.check_upstream.outputs.repo_branch }} ${{ steps.check_upstream.outputs.repo_url }} upstream_src
- name: 🔍 Check if Dockerfile exists
if: steps.check_commits.outputs.commit_count != '0' || steps.check_upstream.outputs.upstream_needs_update == 'true'
id: dockerfile_check
run: |
if [ -f Dockerfile ] || [ -f upstream_src/Dockerfile ]; then
if [ -n "${{ steps.check_upstream.outputs.repo_url }}" ]; then
if [ -f upstream_src/Dockerfile ]; then
echo "exists=true" >> "$GITHUB_OUTPUT"
else
# Fallback or error? User said "ignore", but we need a dockerfile to build.
# Assuming if upstream_src is present, we trust it, or fail at build time.
# Let's say exists=true and let build fail if missing, per user hint.
echo "exists=true" >> "$GITHUB_OUTPUT"
fi
elif [ -f Dockerfile ]; then
echo "exists=true" >> "$GITHUB_OUTPUT"
else
echo "exists=false" >> "$GITHUB_OUTPUT"
@@ -363,8 +372,9 @@ jobs:
uses: docker/build-push-action@v5
id: docker_build
with:
context: ${{ steps.check_upstream.outputs.upstream_needs_update == 'true' && './upstream_src' || '.' }}
context: ${{ steps.check_upstream.outputs.repo_url != '' && './upstream_src' || '.' }}
platforms: linux/amd64,linux/arm64
file: ${{ steps.check_upstream.outputs.repo_url != '' && './upstream_src/Dockerfile' || './Dockerfile' }}
push: true
build-args: |
${{ steps.check_upstream.outputs.build_args }}

View File

@@ -1,5 +1,5 @@
[repo]
url=https://github.com/bentoml/bentoctl.git
url=https://github.com/alam00000/bentopdf.git
branch=main
[args]

View File

@@ -0,0 +1,9 @@
name: pdf
services:
bentopdf:
image: git.icc.gg/ivancarlos/simplebentopdf:latest
container_name: pdf
ports:
- '3211:8080'
restart: unless-stopped

View File

@@ -1,6 +1,5 @@
{
"upstream_sha": "c1c6773",
"updated_at": "Tue Dec 9 20:29:24 UTC 2025",
"version": "1.1.0",
"author": "Ivan Carlos"
"version": "1.1.3",
"author": "Ivan Carlos",
"upstream_sha": "f2e7a1a"
}