Skip to content

v1.0.0 - Initial Release

Choose a tag to compare

@anneschuth anneschuth released this 22 Jan 11:06
e642925

ZAD Actions v1.0.0

Initial release of reusable GitHub Actions for ZAD deployments.

Actions

  • deploy - Deploy container images to ZAD Operations Manager
  • cleanup - Remove ZAD deployments and optionally clean up GitHub resources (environments, deployments, container images)

Usage

# Deploy
- uses: RijksICTGilde/zad-actions/deploy@v1
  with:
    api-key: ${{ secrets.ZAD_API_KEY }}
    project-id: my-project
    deployment-name: my-deployment
    component: web
    image: ghcr.io/org/app:latest

# Cleanup
- uses: RijksICTGilde/zad-actions/cleanup@v1
  with:
    api-key: ${{ secrets.ZAD_API_KEY }}
    project-id: my-project
    deployment-name: my-deployment

See README for full documentation.