publish-helm-chart.yaml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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-helm-chart
  17. on:
  18. push:
  19. branches:
  20. - dev
  21. release:
  22. types:
  23. - released
  24. env:
  25. HUB: ghcr.io/apache/dolphinscheduler
  26. jobs:
  27. build:
  28. if: github.repository == 'apache/dolphinscheduler'
  29. runs-on: ubuntu-latest
  30. permissions:
  31. contents: read
  32. packages: write
  33. timeout-minutes: 30
  34. steps:
  35. - uses: actions/checkout@v2
  36. - name: Set environment variables
  37. run: |
  38. # TODO
  39. if [[ ${{ github.event_name }} == "release" ]]; then
  40. echo "HUB=registry-1.docker.io/apache" >> $GITHUB_ENV
  41. echo "DOCKER_REGISTRY=docker.io" >> $GITHUB_ENV
  42. echo "DOCKER_USERNAME=${{ secrets.DOCKERHUB_USER }}" >> $GITHUB_ENV
  43. echo "DOCKER_PASSWORD=${{ secrets.DOCKERHUB_TOKEN }}" >> $GITHUB_ENV
  44. else
  45. echo "HUB=ghcr.io/apache/dolphinscheduler" >> $GITHUB_ENV
  46. echo "DOCKER_REGISTRY=c" >> $GITHUB_ENV
  47. echo "DOCKER_USERNAME=${{ github.actor }}" >> $GITHUB_ENV
  48. echo "DOCKER_PASSWORD=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
  49. fi
  50. - name: Log in to the Container registry
  51. uses: docker/login-action@v2
  52. with:
  53. registry: ${{ env.DOCKER_REGISTRY }}
  54. username: ${{ env.DOCKER_USERNAME }}
  55. password: ${{ env.DOCKER_PASSWORD }}
  56. - name: Publish Helm Chart
  57. working-directory: deploy/kubernetes
  58. run: |
  59. if [[ ${{ env.HUB }} == "ghcr.io/apache/dolphinscheduler" ]]; then
  60. VERSION=0.0.0-$(git rev-parse --short HEAD)
  61. sed -i "s/^version: .*/version: $VERSION/" dolphinscheduler/Chart.yaml
  62. fi
  63. helm dep up dolphinscheduler
  64. helm package dolphinscheduler
  65. helm push dolphinscheduler-helm-*.tgz oci://${{ env.HUB }}