action_publish-images-production.yml 445 B

123456789101112131415161718
  1. name: Docker Publish (Production Images)
  2. on:
  3. workflow_dispatch:
  4. release:
  5. types: [released]
  6. # Commenting out until 3.x is launched
  7. # schedule:
  8. # - cron: '0 8 * * 2'
  9. jobs:
  10. build-production-images:
  11. uses: ./.github/workflows/service_docker-build-and-publish.yml
  12. with:
  13. registry-repositories: "docker.io/serversideup/php,ghcr.io/serversideup/php"
  14. tag-prefix: ''
  15. release-type: "latest"
  16. secrets: inherit