From 54a6d8a1d4e711d225f4333ceeff2d64abbed230 Mon Sep 17 00:00:00 2001 From: aquint-zama Date: Tue, 11 Jun 2024 15:00:16 +0200 Subject: [PATCH] fix(ci): missing backslashes --- .github/workflows/concrete_python_release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/concrete_python_release.yml b/.github/workflows/concrete_python_release.yml index 280bcb360..fd6bc5207 100644 --- a/.github/workflows/concrete_python_release.yml +++ b/.github/workflows/concrete_python_release.yml @@ -245,9 +245,10 @@ jobs: if: ${{ env.RELEASE_TYPE == 'public' || env.RELEASE_TYPE == 'nightly' }} run: | export TAG=$(git describe --tags --abbrev=0) - gh release create --draft --repo ${{ github.repository }} - --verify-tag $TAG - *.intoto.jsonl/* wheels/* + echo $TAG + gh release create --draft --repo ${{ github.repository }} \ + --verify-tag $TAG \ + wheels/* env: GH_TOKEN: ${{ github.token }} - name: Upload wheels to S3