docker-ci.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. name: docker-ci
  2. on:
  3. push:
  4. tags:
  5. - 'v*'
  6. jobs:
  7. docker:
  8. runs-on: ubuntu-latest
  9. steps:
  10. -
  11. name: Checkout
  12. uses: actions/checkout@v4
  13. with:
  14. fetch-depth: 0
  15. -
  16. name: Find Git Tag
  17. id: tagger
  18. uses: jimschubert/query-tag-action@v2
  19. with:
  20. include: 'v*'
  21. exclude: '*-rc*'
  22. commit-ish: 'HEAD'
  23. skip-unshallow: 'true'
  24. abbrev: 7
  25. -
  26. name: Compute Docker tag
  27. id: docker_tag
  28. run: echo "tag=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
  29. -
  30. name: Set up QEMU
  31. uses: docker/setup-qemu-action@v1
  32. -
  33. name: Set up Docker Buildx
  34. uses: docker/setup-buildx-action@v1
  35. -
  36. name: Login to DockerHub
  37. uses: docker/login-action@v1
  38. with:
  39. username: ${{ secrets.DOCKERHUB_USERNAME }}
  40. password: ${{ secrets.DOCKERHUB_TOKEN }}
  41. -
  42. name: Build and push
  43. id: docker_build
  44. uses: docker/build-push-action@v2
  45. with:
  46. context: .
  47. platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
  48. push: true
  49. tags: |
  50. ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:${{ steps.docker_tag.outputs.tag }}
  51. ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:latest
  52. build-args: 'GIT_DESC=${{steps.tagger.outputs.tag}}'