From bd8bae7a7eae1f39eb8345c1133147bb8c806a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Dahlgren?= Date: Fri, 1 Jan 2021 12:10:45 +0100 Subject: [PATCH] Update README example set-env is deprecated https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0cd85e0..04cabbe 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Set VERSION env - run: echo ::set-env name=VERSION::$(echo ${GITHUB_REF:11}) + run: echo VERSION=${GITHUB_REF:11} >> $GITHUB_ENV - name: Build addon with HEMTT uses: 16AAModTeam/hemtt@stable with: