From 345bf63b40a7415b9a0825388883e0bdf2eb37ff Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Thu, 13 Apr 2023 23:58:37 +0200 Subject: [PATCH] Update CI-master_tests.yml --- .github/workflows/CI-master_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI-master_tests.yml b/.github/workflows/CI-master_tests.yml index c332900..20f8b8c 100644 --- a/.github/workflows/CI-master_tests.yml +++ b/.github/workflows/CI-master_tests.yml @@ -414,7 +414,7 @@ jobs: - name: Generate random id: random_n - run: echo "::set-output name=tag_name::$(openssl rand -hex 4)" + run: echo "::set-output name=some_rand::$(openssl rand -hex 4)" # Create the release - name: Create Release @@ -423,8 +423,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{steps.date.outputs.date}}-${{steps.date.outputs.random_n}} - release_name: Release ${{ github.ref }} ${{steps.date.outputs.date}}-${{steps.date.outputs.random_n}} + tag_name: ${{steps.date.outputs.date}}-${{steps.random_n.outputs.some_rand}} + release_name: Release ${{ github.ref }} ${{steps.date.outputs.date}}-${{steps.random_n.outputs.some_rand}} draft: false prerelease: false