From ba6325521f4ef280ac38336d0bf1d47658ddcd47 Mon Sep 17 00:00:00 2001 From: Hannes Reinberger <40197225+hreinberger@users.noreply.github.com> Date: Mon, 11 Jan 2021 12:57:02 +0100 Subject: [PATCH] allow unsecure commands for retrieving Release tag --- .github/workflows/archive.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/archive.yml b/.github/workflows/archive.yml index e1d215435..a94efe7b3 100644 --- a/.github/workflows/archive.yml +++ b/.github/workflows/archive.yml @@ -9,9 +9,9 @@ jobs: - name: Checkout Master uses: actions/checkout@master - name: Set Tag env - run: | - echo 'ACTIONS_ALLOW_UNSECURE_COMMANDS=true' >> $GITHUB_ENV - echo ::set-env name=RELEASE_VERSION::${GITHUB_REF:10} + run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF:10} + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' - name: Test tag run: echo ${{ env.RELEASE_VERSION }} - name: Prepare folder