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.

57 lines
1.9 KiB

  1. name: "docker: build release containers for normal volume"
  2. on:
  3. push:
  4. tags:
  5. - '*'
  6. workflow_dispatch: {}
  7. permissions:
  8. contents: read
  9. jobs:
  10. build-default-release-container:
  11. runs-on: [ubuntu-latest]
  12. steps:
  13. -
  14. name: Checkout
  15. uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v2
  16. -
  17. name: Docker meta
  18. id: docker_meta
  19. uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v3
  20. with:
  21. images: |
  22. chrislusf/seaweedfs
  23. tags: |
  24. type=ref,event=tag
  25. flavor: |
  26. latest=false
  27. labels: |
  28. org.opencontainers.image.title=seaweedfs
  29. 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!
  30. org.opencontainers.image.vendor=Chris Lu
  31. -
  32. name: Set up QEMU
  33. uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v1
  34. -
  35. name: Set up Docker Buildx
  36. uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v1
  37. -
  38. name: Login to Docker Hub
  39. if: github.event_name != 'pull_request'
  40. uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v1
  41. with:
  42. username: ${{ secrets.DOCKER_USERNAME }}
  43. password: ${{ secrets.DOCKER_PASSWORD }}
  44. -
  45. name: Build
  46. uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v2
  47. with:
  48. context: ./docker
  49. push: ${{ github.event_name != 'pull_request' }}
  50. file: ./docker/Dockerfile.go_build
  51. platforms: linux/amd64, linux/arm, linux/arm64, linux/386
  52. tags: ${{ steps.docker_meta.outputs.tags }}
  53. labels: ${{ steps.docker_meta.outputs.labels }}