docker-ci.yml 1.6 KB

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