From 4dbfcbcebe9d7ea54bd009bb85a331dc6ef51295 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Sat, 18 Jul 2020 01:26:47 +0300 Subject: [PATCH] ci(release): Fix quotes for auto version setting --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 23c8256..a82b9ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: while curl -sf -o /dev/null "https://api.github.com/repos/$GITHUB_REPOSITORY/git/ref/tags/$DATE_PART.$PATCH_VERSION"; do (( PATCH_VERSION++ )) done - echo "::set-output name=version::"$DATE_PART.$PATCH_VERSION"" + echo "::set-output name=version::$DATE_PART.$PATCH_VERSION" - uses: actions/checkout@v2 - uses: getsentry/craft@master if: ${{ !github.event.client_payload.skip_prepare }}