From 75bbea70cf6bbc5b23ca4bde83961090056175cc Mon Sep 17 00:00:00 2001 From: abe Date: Wed, 1 Sep 2021 12:58:00 +0200 Subject: [PATCH] Try to fix yml syntax... * Issue on id.. weird --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b0a152a..399f523 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -103,7 +103,9 @@ jobs: - name: Get tag id: get_tag - run: [[ ${{ github.ref }} =~ refs\/tags\/(.*) ]] && echo "::set-output name=value::${BASH_REMATCH[1]}" + run: | + [[ ${{ github.ref }} =~ refs\/tags\/(.*) ]]; + echo "::set-output name=value::${BASH_REMATCH[1]}"; - name: Create docker image archive run: docker save mage:latest | gzip > mage_latest.tar.gz