From 2abec56c22eb794debc283b7d40647161d49f71e Mon Sep 17 00:00:00 2001 From: David VIEJO Date: Tue, 23 Jul 2024 23:27:47 +0200 Subject: [PATCH] Update CLI Signed-off-by: David VIEJO --- .github/workflows/build-and-release-cli.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-release-cli.yml b/.github/workflows/build-and-release-cli.yml index ce9be05..29f0e69 100644 --- a/.github/workflows/build-and-release-cli.yml +++ b/.github/workflows/build-and-release-cli.yml @@ -73,7 +73,7 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release create ${{ github.ref_name }} \ - --repo kfsoftware/fabriclaunch-releases \ + --repo kfsoftware/fabriclaunch \ --target=main \ --title "Release ${{ github.ref_name }}" \ --notes="example notes" @@ -85,7 +85,7 @@ jobs: for file in fabriclaunch-*; do echo "Uploading $file" gh release upload ${{ github.ref_name }} "$file/$file" \ - --repo kfsoftware/fabriclaunch-releases \ + --repo kfsoftware/fabriclaunch \ --clobber done