You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.2 KiB

  1. name: "docker: build dev containers"
  2. on:
  3. push:
  4. branches: [ master ]
  5. workflow_dispatch: {}
  6. permissions:
  7. contents: read
  8. jobs:
  9. build-dev-containers:
  10. runs-on: [ubuntu-latest]
  11. steps:
  12. -
  13. name: Checkout
  14. uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2
  15. -
  16. name: Docker meta
  17. id: docker_meta
  18. uses: docker/metadata-action@57396166ad8aefe6098280995947635806a0e6ea # v3
  19. with:
  20. images: |
  21. chrislusf/seaweedfs
  22. ghcr.io/chrislusf/seaweedfs
  23. tags: |
  24. type=raw,value=dev
  25. labels: |
  26. org.opencontainers.image.title=seaweedfs
  27. org.opencontainers.image.description=SeaweedFS is a distributed storage system for blobs, objects, files, and data lake, to store and serve billions of files fast!
  28. org.opencontainers.image.vendor=Chris Lu
  29. -
  30. name: Set up QEMU
  31. uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v1
  32. -
  33. name: Set up Docker Buildx
  34. uses: docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325 # v1
  35. with:
  36. buildkitd-flags: "--debug"
  37. -
  38. name: Login to Docker Hub
  39. if: github.event_name != 'pull_request'
  40. uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v1
  41. with:
  42. username: ${{ secrets.DOCKER_USERNAME }}
  43. password: ${{ secrets.DOCKER_PASSWORD }}
  44. -
  45. name: Login to GHCR
  46. if: github.event_name != 'pull_request'
  47. uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v1
  48. with:
  49. registry: ghcr.io
  50. username: ${{ secrets.GHCR_USERNAME }}
  51. password: ${{ secrets.GHCR_TOKEN }}
  52. -
  53. name: Build
  54. uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v2
  55. with:
  56. context: ./docker
  57. push: ${{ github.event_name != 'pull_request' }}
  58. file: ./docker/Dockerfile.go_build
  59. platforms: linux/amd64, linux/arm64
  60. tags: ${{ steps.docker_meta.outputs.tags }}
  61. labels: ${{ steps.docker_meta.outputs.labels }}