From d2a96e49f88fae85ac6cc88f1e80c20f486a163e Mon Sep 17 00:00:00 2001 From: 0x6f736f646f Date: Thu, 6 Oct 2022 22:58:27 +0300 Subject: [PATCH] Fix CI Signed-off-by: 0x6f736f646f --- .github/workflows/release_workflow.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index 8f24303..8103118 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -51,13 +51,13 @@ jobs: output-file: "false" - name: Create Release # This action will create the actual release uses: actions/create-release@v1 - if: ${{ steps.changelog.outputs.skipped == 'false' } + if: ${{ steps.changelog.outputs.skipped == 'false' }} env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN } + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ steps.changelog.outputs.tag } - release_name: ${{ steps.changelog.outputs.tag } - body: ${{ steps.changelog.outputs.clean_changelog } + tag_name: ${{ steps.changelog.outputs.tag }} + release_name: ${{ steps.changelog.outputs.tag }} + body: ${{ steps.changelog.outputs.clean_changelog }} - uses: ncipollo/release-action@v1 with: