From 49f98c56f0d40b9cbcc16d59323f36368b3bc8bd Mon Sep 17 00:00:00 2001 From: will Farrell Date: Thu, 17 Dec 2020 08:27:03 -0700 Subject: [PATCH] ci: fix image name, was deplying to wrong image --- .github/workflows/github-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-build.yml b/.github/workflows/github-build.yml index a94098c..c8c24fc 100644 --- a/.github/workflows/github-build.yml +++ b/.github/workflows/github-build.yml @@ -31,11 +31,11 @@ jobs: - if: github.ref == 'refs/heads/main' name: Conditional(Set tag as `latest`) - run: echo "tag=willfarrell/crontab:latest" >> $GITHUB_ENV + run: echo "tag=willfarrell/autoheal:latest" >> $GITHUB_ENV - if: startsWith(github.ref, 'refs/tags/') name: Conditional(Set tag as `{version}`) - run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/}" >> $GITHUB_ENV + run: echo "tag=willfarrell/autoheal:${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Build and push