Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Hello,
I’m trying to deploy a docker image to an App using the official GitHub Action pipeline. I have setup my wokflow to create or update a new app, the push the image. Here is my step:
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy
uses: digitalocean/app_action/deploy@v2
env:
DIGEST: ${{ steps.push.outputs.digest }}
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
And here is my app.yaml:
name: xxx
region: ams
services:
- name: xxx
image:
registry_type: GHCR
registry: me
repository: xxx
digest: ${DIGEST}
registry_credentials: 'me:${GHCR_TOKEN}'
envs:
# -...
The steps and pipeline seems to push correcly the image to my app and start the container. However, when the container starts, the deployment still thinks it’s deploying, and then fails due to a timeout.

How can I tell the deployment that the container has started and the deployment is successfull ? Am I missing a step ?
Thanks
Arnold Hendriks
Scott Hilbert
jessicakaren907
Arnold Hendriks
Kyle Loveless
Drillgon200
patrickhasting
afdaldev
business