This is an automated email from the ASF dual-hosted git repository.
dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push:
new 1ed3a8260 [INLONG-6893][CI] Fix build and push docker image
skipped(addendum) (#6895)
1ed3a8260 is described below
commit 1ed3a8260c652edf95522c5e8161a0974451e47f
Author: Charles Zhang <[email protected]>
AuthorDate: Thu Dec 15 09:49:24 2022 +0800
[INLONG-6893][CI] Fix build and push docker image skipped(addendum) (#6895)
---
.github/workflows/ci_chart_test.yml | 2 +-
.github/workflows/ci_docker.yml | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/ci_chart_test.yml
b/.github/workflows/ci_chart_test.yml
index c1af97fcf..6a4fa7556 100644
--- a/.github/workflows/ci_chart_test.yml
+++ b/.github/workflows/ci_chart_test.yml
@@ -76,7 +76,7 @@ jobs:
run: |
changed=$(ct list-changed --config ${{ env.CT_CONFIG_PATH }}
--target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
- echo "{changed}={true}" >> $GITHUB_OUTPUT
+ echo "changed=true" >> $GITHUB_OUTPUT
echo "Changed charts: $changed"
else
echo "Charts are not changed, they will not be linted, validated,
installed and tested."
diff --git a/.github/workflows/ci_docker.yml b/.github/workflows/ci_docker.yml
index bd2f750c9..2665f4015 100644
--- a/.github/workflows/ci_docker.yml
+++ b/.github/workflows/ci_docker.yml
@@ -94,9 +94,9 @@ jobs:
&& github.repository_owner == 'apache'
run: |
if [[ ${{ github.ref_name }} == ${{
github.event.repository.default_branch }} ]]; then
- echo "{match_master}={true}" >> $GITHUB_OUTPUT
+ echo "match_master=true" >> $GITHUB_OUTPUT
elif [[ ${{ github.ref_name }} =~ ^branch-[0-9]+\.[0-9]+$ ]]; then
- echo "{match_release}={true}" >> $GITHUB_OUTPUT
+ echo "match_release=true" >> $GITHUB_OUTPUT
fi
# Publish x86 Docker images when the changes are being pushed to the
master branch or a release branch like 'branch-1.4'.