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 dcee6b07f [INLONG-6893][CI] Fix build and push docker image skipped
(#6894)
dcee6b07f is described below
commit dcee6b07f3839d9748c7d2e7f6557ab58f6e7626
Author: Charles Zhang <[email protected]>
AuthorDate: Wed Dec 14 22:46:03 2022 +0800
[INLONG-6893][CI] Fix build and push docker image skipped (#6894)
---
.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 9633b68c1..c1af97fcf 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 "name=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 bc53f8b2e..bd2f750c9 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 "name=match_master::true" >> $GITHUB_OUTPUT
+ echo "{match_master}={true}" >> $GITHUB_OUTPUT
elif [[ ${{ github.ref_name }} =~ ^branch-[0-9]+\.[0-9]+$ ]]; then
- echo "name=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'.