From 44a4708123c6bf0f8295e959622497f63433b9e5 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:35:28 -0700 Subject: [PATCH] ci: change how env is set --- .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 6dee49d..d2abdea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,13 +31,13 @@ jobs: - if: github.ref == 'refs/heads/main' name: Conditional(Set tag as `latest`) - run: echo ::set-output name=tag::latest + run: echo "tag=latest >> $GITHUB_ENV" - if: startsWith(github.ref, 'refs/tags/') name: Conditional(Set tag as `{version}`) - run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} + run: echo "tag=${GITHUB_REF#refs/*/} >> $GITHUB_ENV" - - + - name: Build and push uses: docker/build-push-action@v2 with: