From bad2185dc5f92faedf3f348c210121eb24532272 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 20:17:59 +0000 Subject: [PATCH 1/2] Initial plan From 7010c58184e9c7d0b6e65be990ff3e62a310bcc0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 20:20:30 +0000 Subject: [PATCH 2/2] Fix typos: remove extra spaces in GitHub Actions workflow variables Co-authored-by: lstein <111189+lstein@users.noreply.github.com> --- .github/workflows/deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 75ae7ff1..fd9e9132 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest outputs: version: ${{ steps.get_version.outputs.version }} - tag: ${{ steps.get_version. outputs.tag }} + tag: ${{ steps.get_version.outputs.tag }} steps: - name: Checkout code uses: actions/checkout@v4 @@ -40,7 +40,7 @@ jobs: - name: Check if tag exists id: check_tag run: | - if git ls-remote --tags origin | grep -q "refs/tags/v${{ steps.get_version.outputs. version }}"; then + if git ls-remote --tags origin | grep -q "refs/tags/v${{ steps.get_version.outputs.version }}"; then echo "Tag already exists" echo "exists=true" >> $GITHUB_OUTPUT else @@ -49,9 +49,9 @@ jobs: fi - name: Tag the release - if: steps. check_tag.outputs.exists == 'false' + if: steps.check_tag.outputs.exists == 'false' run: | - git config user. name "github-actions" + git config user.name "github-actions" git config user.email "github-actions@github.com" git tag v${{ steps.get_version.outputs.version }} git push origin v${{ steps.get_version.outputs.version }} @@ -67,7 +67,7 @@ jobs: uses: ./.github/workflows/deploy-dockerhub.yml secrets: DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} - DOCKERHUB_TOKEN: ${{ secrets. DOCKERHUB_TOKEN }} + DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} deploy-pyinstaller: needs: deploy-dockerhub @@ -75,6 +75,6 @@ jobs: upload-release: needs: [tag-release, deploy-pypi, deploy-dockerhub, deploy-pyinstaller] - uses: ./.github/workflows/upload-artifacts.yml + uses: ./.github/workflows/upload-artifacts.yml with: tag_name: ${{ needs.tag-release.outputs.tag }} \ No newline at end of file