ci: add universe dispatch on semver tag push

This commit is contained in:
Hanzo AI
2026-04-09 22:30:35 -07:00
parent 69860c26e7
commit 8f5c5a88cc
+18
View File
@@ -13,3 +13,21 @@ jobs:
with:
image: ghcr.io/luxfi/netrunner
secrets: inherit
notify-universe:
needs: docker
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.UNIVERSE_PAT }}
repository: luxfi/universe
event-type: image-published
client-payload: |
{
"service": "netrunner",
"image": "ghcr.io/luxfi/netrunner",
"tag": "${{ github.ref_name }}",
"sha": "${{ github.sha }}"
}