From 94f20cc9ad97a95be49fd371384f2bc5546b3d5b Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 20 Nov 2020 08:56:56 +0100 Subject: [PATCH] ci: Switch to environment files Fixes: "Unable to process command '::set-env name=RELEASE_VERSION::2.3' successfully. The `set-env` command is disabled. Please upgrade to using Environment Files [...]." To make the next release smoother, hopefully. Signed-off-by: Jan Kiszka --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c6212fc..492d4d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: - name: Check out repo uses: actions/checkout@v2 - name: Get release - run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/tags/} + run: echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV - name: Login to ghcr.io uses: docker/login-action@v1 with: