6 Commits

Author SHA1 Message Date
Gitea Actions
dfed5525f0 Update manifest version to 4.0.4 [▶️] 2025-12-09 19:37:03 +00:00
ce21400976 update to arm
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 16m4s
2025-12-09 16:36:28 -03:00
Gitea Actions
1d61546765 Update manifest version to 4.0.3 [▶️] 2025-12-09 19:21:11 +00:00
43cf733f72 Merge branch 'main' of https://git.icc.gg/ivancarlos/ddnsonroute53
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 1m17s
2025-12-09 16:20:47 -03:00
7613c3765d approved 2025-12-09 16:20:33 -03:00
Gitea Actions
f43fd64719 Update manifest version to 4.0.2 [▶️] 2025-12-09 19:18:43 +00:00
2 changed files with 12 additions and 7 deletions

View File

@@ -229,20 +229,20 @@ jobs:
cat release_payload.json
# Create Release
RESPONSE=$(curl -s -X POST "${{ gitea.api_url }}/repos/${{ gitea.repository }}/releases" \
curl -s -X POST "${{ gitea.api_url }}/repos/${{ gitea.repository }}/releases" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Content-Type: application/json" \
-d @release_payload.json)
-d @release_payload.json > api_response.json
echo "DEBUG: API Response:"
echo "$RESPONSE" || true
cat api_response.json || true
RELEASE_ID=$(echo "$RESPONSE" | jq -r .id)
RELEASE_ID=$(jq -r .id api_response.json)
echo "RELEASE_ID=$RELEASE_ID" >> "$GITHUB_OUTPUT"
if [ "$RELEASE_ID" == "null" ] || [ -z "$RELEASE_ID" ]; then
echo "Failed to create release. Response:"
echo "$RESPONSE"
echo "Failed to create release. Response content:"
cat api_response.json
exit 1
fi
@@ -278,6 +278,10 @@ jobs:
username: ${{ gitea.actor }}
password: ${{ secrets.CR_PAT }}
- name: 🛠 Set up QEMU
if: steps.check_commits.outputs.commit_count != '0' && steps.dockerfile_check.outputs.exists == 'true'
uses: docker/setup-qemu-action@v3
- name: 🛠 Set up Docker Buildx
if: steps.check_commits.outputs.commit_count != '0' && steps.dockerfile_check.outputs.exists == 'true'
uses: docker/setup-buildx-action@v3
@@ -287,6 +291,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
git.icc.gg/${{ gitea.repository }}:latest

View File

@@ -1,4 +1,4 @@
{
"version": "4.0.1",
"version": "4.0.4",
"author": "Ivan Carlos"
}