I want to trigger a “Deploy” action whenever my app’s Docker image is pushed to my Gitea installation via some other action (or manual push to Docker registry - managed as “Packages” in the same Gitea instance).
I can’t seem to get Gitea’s trigger event “registry_package” of type “published” to work.
Snippets from my YAML file:
# this will NOT be triggered
name: Deploy
on:
registry_package:
types:
- published
...
# this will be triggered on push, and I am able to pull the Docker image for deployment
name: Deploy
on:
push:
...
Current setup:
- Gitea v1.21.11.
- The Gitea action si in a private repo, in a private org.
- I have a “Build” Gitea action that runs on push. It is working, and as part of this action, it push my app’s Docker image to my Gitea Docker registry.
- Confirmed the docker image is pushed to my Gitea as
mygitea.com/my-org/my-app/my-app-test:latest
. It is viewable in the organisation’s “Packages” tab. - I did not “Link this package to a repository”.
Q1: How to get “registry_package” to work?
Q2: If Q1 can be solved, how to run only if the deployed package name matches? (I saw some Github action examples using if: ${{ github.event.package.name == 'my-app/my-app-test' }}
). A working Gitea action to demonstrate this use case would be awesome…or at least pointers to figure this out.
Thanks for reading and hope to get some help on this.