ci.yml 404 B

1234567891011121314151617181920
  1. name: Attu docker build test
  2. on:
  3. pull_request:
  4. branches:
  5. - main
  6. types: [opened, synchronize]
  7. jobs:
  8. publish:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: Setup Node.js
  13. uses: actions/setup-node@v3
  14. with:
  15. node-version: 18
  16. - name: Docker Build
  17. run: docker build -t zilliz/attu:dev --build-arg VERSION=dev .