From 703e926b9667b1733b48c833ee0ba594c870880f Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Thu, 15 Apr 2021 21:17:11 -0600 Subject: [PATCH] Build CLI: Fix typo --- .github/workflows/build-cli.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-cli.yml b/.github/workflows/build-cli.yml index 618182a0e..363c37748 100644 --- a/.github/workflows/build-cli.yml +++ b/.github/workflows/build-cli.yml @@ -12,18 +12,18 @@ jobs: runs-on: self-hosted steps: - uses: actions/checkout@v2 - - run: pyinstaller OCLP-GUI.spec + - run: pyinstaller OCLP-CLI.spec - run: cd dist; zip ../OCLP-GUI.zip OCLP-GUI - name: Upload Binary to Artifacts uses: actions/upload-artifact@v2 with: - name: OCLP-GUI - path: OCLP-GUI.zip + name: OCLP-CLI + path: OCLP-CLI.zip - name: Upload to Release if: github.event_name == 'release' uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: OCLP-GUI.zip + file: OCLP-CLI.zip tag: ${{ github.ref }} file_glob: true