From 8bc167a884baa5a7e3d37e94706fd333c19cdd64 Mon Sep 17 00:00:00 2001 From: SebClem Date: Mon, 12 Oct 2020 14:28:12 +0200 Subject: [PATCH] :ambulance: Fix missing tags in CI/CD --- .github/workflows/build_addon.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_addon.yml b/.github/workflows/build_addon.yml index f9275ea..195c215 100644 --- a/.github/workflows/build_addon.yml +++ b/.github/workflows/build_addon.yml @@ -62,9 +62,9 @@ jobs: - name: Set Tags ${{matrix.arch}} run: | if [ "${{env.version_type}}" != "dev" ]; then - echo "TAGS=${{env.REPOSITORY}}/${{env.IMAGE}}:latest, ${{env.REPOSITORY}}/${{env.IMAGE}}:$(jq --raw-output '.version' "${{env.TARGET}}/config.json")" + echo "TAGS=${{env.REPOSITORY}}/${{env.IMAGE}}:latest, ${{env.REPOSITORY}}/${{env.IMAGE}}:$(jq --raw-output '.version' "${{env.TARGET}}/config.json")" >> $GITHUB_ENV else - echo "TAGS=${{env.REPOSITORY}}/${{env.IMAGE}}:dev, $(jq --raw-output '.version' "${{env.TARGET}}/config.json")" + echo "TAGS=${{env.REPOSITORY}}/${{env.IMAGE}}:dev, $(jq --raw-output '.version' "${{env.TARGET}}/config.json")" >> $GITHUB_ENV fi - name: Debug Env