docker-build.yml 444 B

1234567891011121314151617181920212223
  1. name: Docker Build
  2. on:
  3. push:
  4. branches: [main]
  5. jobs:
  6. build:
  7. runs-on: ubuntu-latest
  8. env:
  9. FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
  10. steps:
  11. - uses: actions/checkout@v6
  12. - uses: docker/setup-buildx-action@v4
  13. - uses: docker/build-push-action@v7
  14. with:
  15. context: .
  16. push: false
  17. tags: pilotdeck:latest
  18. cache-from: type=gha
  19. cache-to: type=gha,mode=max