| 1234567891011121314151617181920212223 |
- name: Docker Build
- on:
- push:
- branches: [main]
- jobs:
- build:
- runs-on: ubuntu-latest
- env:
- FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
- steps:
- - uses: actions/checkout@v6
- - uses: docker/setup-buildx-action@v4
- - uses: docker/build-push-action@v7
- with:
- context: .
- push: false
- tags: pilotdeck:latest
- cache-from: type=gha
- cache-to: type=gha,mode=max
|