Host the action on Gitea
Some checks failed
test / test (20) (push) Successful in 1m55s
test / test (22) (push) Successful in 1m3s
test / misconfiguration (push) Successful in 16s
release / major-tag (push) Failing after 15m44s

Workflows move to .gitea/workflows, which Gitea prefers over
.github/workflows when both exist.

GitHub Actions can only resolve `uses:` against github.com, so the
README now spells out both forms: the full Gitea URL, and the
checkout-then-`uses: ./` fallback for a GitHub workflow that has no
mirror of this repository.
This commit is contained in:
2026-08-09 12:37:09 +03:00
parent c23b44983b
commit c4a7cabcef
6 changed files with 48 additions and 22 deletions

View File

@@ -66,7 +66,10 @@ jobs:
runs-on: ubuntu-latest
environment: production
steps:
- uses: maxvojtkov/dokploy-deploy-action@v1
# GitHub only resolves `uses:` against github.com, so this assumes the
# action is mirrored there. Pulling it from Gitea instead needs the
# checkout-then-`uses: ./` form shown in the README.
- uses: your-org/dokploy-deploy-action@v1
with:
host: ${{ secrets.DOKPLOY_HOST }}
api-key: ${{ secrets.DOKPLOY_API_KEY }}