From a2974e24de9840abdceb1dd6f1341fc95313ec0a Mon Sep 17 00:00:00 2001 From: Gianfranco Paoloni Date: Tue, 6 Sep 2022 21:26:13 -0300 Subject: [PATCH] Fixed syntax on action --- .github/actions/generate-pre-release/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/generate-pre-release/action.yml b/.github/actions/generate-pre-release/action.yml index 65ba7e7021..ad542fd412 100644 --- a/.github/actions/generate-pre-release/action.yml +++ b/.github/actions/generate-pre-release/action.yml @@ -11,7 +11,7 @@ inputs: description: Release title - The title that will be given to this pre-release. required: true repo_token: - description: A GitHub token to access the repo. Tipically ${{ secrets.GITHUB_TOKEN }}. + description: A GitHub token to access the repo. Tipically secrets.GITHUB_TOKEN. required: true outputs: generated-pre-release-tag: @@ -45,6 +45,7 @@ runs: id: generate_next_tag - run: echo ${{ steps.generate_next_tag.outputs.generated-tag }} + shell: bash # Create a pre-release - name: Create a pre-release