From 84ce659f864005cc762289acfc230243989a182c Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:50:10 -0700 Subject: [PATCH] ci: change how tag is built --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 07b01ea..077f62f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,11 +31,11 @@ jobs: - if: github.ref == 'refs/heads/main' name: Conditional(Set tag as `latest`) - run: echo "tag=latest >> $GITHUB_ENV" + run: echo "tag=willfarrell/crontab:latest >> $GITHUB_ENV" - if: startsWith(github.ref, 'refs/tags/') name: Conditional(Set tag as `{version}`) - run: echo "tag=${GITHUB_REF#refs/*/} >> $GITHUB_ENV" + run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/} >> $GITHUB_ENV" - run: echo "$tag" @@ -48,4 +48,4 @@ jobs: platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | - ${{ join(['willfarrell/crontab', env.tag], ':') }} \ No newline at end of file + ${{ env.ta }} \ No newline at end of file