Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 4, 2026

Addresses feedback on PR #190 where extra spaces in GitHub Actions variable references would cause workflow execution failures.

Changes

Fixed 6 variable reference typos in .github/workflows/deploy.yml:

  • steps.get_version. outputs.tagsteps.get_version.outputs.tag
  • steps.get_version.outputs. versionsteps.get_version.outputs.version
  • steps. check_tagsteps.check_tag
  • user. nameuser.name
  • secrets. DOCKERHUB_TOKENsecrets.DOCKERHUB_TOKEN
  • uses: ./.github/workflowsuses: ./.github/workflows (double space)

Example of the fix:

# Before
if git ls-remote --tags origin | grep -q "refs/tags/v${{ steps.get_version.outputs. version }}"; then

# After
if git ls-remote --tags origin | grep -q "refs/tags/v${{ steps.get_version.outputs.version }}"; then

✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot AI changed the title [WIP] Address feedback on deploy actions update in PR #190 Fix variable reference typos in deploy workflow Jan 4, 2026
Copilot AI requested a review from lstein January 4, 2026 20:22
@lstein lstein marked this pull request as ready for review January 5, 2026 20:22
Copy link
Owner

@lstein lstein left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good

@lstein lstein merged commit 296bff2 into chore/fix-deploy-workflows Jan 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants