publish-docker.yaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. name: publish-docker
  17. on:
  18. push:
  19. branches:
  20. - dev
  21. env:
  22. HUB: ghcr.io/apache/dolphinscheduler
  23. jobs:
  24. build:
  25. if: github.repository == 'apache/dolphinscheduler'
  26. runs-on: ubuntu-latest
  27. permissions:
  28. contents: read
  29. packages: write
  30. timeout-minutes: 30
  31. steps:
  32. - uses: actions/checkout@v2
  33. - name: Cache local Maven repository
  34. uses: actions/cache@v3
  35. with:
  36. path: ~/.m2/repository
  37. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  38. restore-keys: |
  39. ${{ runner.os }}-maven-
  40. - name: Log in to the Container registry
  41. uses: docker/login-action@v1.10.0
  42. with:
  43. registry: ${{ env.HUB }}
  44. username: ${{ github.actor }}
  45. password: ${{ secrets.GITHUB_TOKEN }}
  46. - name: Set up QEMU
  47. uses: docker/setup-qemu-action@v2
  48. - name: Set up Docker Buildx
  49. uses: docker/setup-buildx-action@v2
  50. - name: Build and push docker images
  51. run: |
  52. ./mvnw -B clean deploy \
  53. -Dmaven.test.skip \
  54. -Dmaven.javadoc.skip \
  55. -Dcheckstyle.skip=true \
  56. -Dmaven.deploy.skip \
  57. -Ddocker.tag=${{ github.sha }} \
  58. -Ddocker.hub=${{ env.HUB }} \
  59. -Pdocker,release