This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 9668c84d30 Fix typo (#13632)
9668c84d30 is described below
commit 9668c84d30b2c885cbf20ccf9e76f64a41f77096
Author: kezhenxu94 <[email protected]>
AuthorDate: Mon Feb 27 10:12:14 2023 +0800
Fix typo (#13632)
---
.github/workflows/publish-helm-chart.yaml | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/.github/workflows/publish-helm-chart.yaml
b/.github/workflows/publish-helm-chart.yaml
index e28b60e448..e383373692 100644
--- a/.github/workflows/publish-helm-chart.yaml
+++ b/.github/workflows/publish-helm-chart.yaml
@@ -24,9 +24,6 @@ on:
types:
- released
-env:
- HUB: ghcr.io/apache/dolphinscheduler
-
jobs:
build:
if: github.repository == 'apache/dolphinscheduler'
@@ -39,7 +36,6 @@ jobs:
- uses: actions/checkout@v2
- name: Set environment variables
run: |
- # TODO
if [[ ${{ github.event_name }} == "release" ]]; then
echo "HUB=registry-1.docker.io/apache" >> $GITHUB_ENV
echo "DOCKER_REGISTRY=docker.io" >> $GITHUB_ENV
@@ -47,7 +43,7 @@ jobs:
echo "DOCKER_PASSWORD=${{ secrets.DOCKERHUB_TOKEN }}" >>
$GITHUB_ENV
else
echo "HUB=ghcr.io/apache/dolphinscheduler" >> $GITHUB_ENV
- echo "DOCKER_REGISTRY=c" >> $GITHUB_ENV
+ echo "DOCKER_REGISTRY=ghcr.io/apache/dolphinscheduler" >>
$GITHUB_ENV
echo "DOCKER_USERNAME=${{ github.actor }}" >> $GITHUB_ENV
echo "DOCKER_PASSWORD=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
fi