fix: replace github.sha with gitea.sha in CI workflow #23

Merged
AI-Manager merged 1 commits from fix/gitea-sha-ci-workflow into master 2026-03-26 08:04:26 +00:00
Owner

Summary

  • Replace ${{ github.sha }} with ${{ gitea.sha }} in .gitea/workflows/build.yaml
  • This fixes the image tag SHA component which was empty due to using GitHub Actions syntax in Gitea Actions
  • Verified no other github.* context references remain in the workflow file

Test plan

  • Trigger a push to master and verify the image tag contains a 7-char SHA (e.g., 20260326120000-a1b2c3d)
  • Verify CI workflow completes the Set image tag step without errors

Closes leeworks-agents/gitea-mobile#20

Generated with Claude Code

## Summary - Replace `${{ github.sha }}` with `${{ gitea.sha }}` in `.gitea/workflows/build.yaml` - This fixes the image tag SHA component which was empty due to using GitHub Actions syntax in Gitea Actions - Verified no other `github.*` context references remain in the workflow file ## Test plan - [ ] Trigger a push to master and verify the image tag contains a 7-char SHA (e.g., `20260326120000-a1b2c3d`) - [ ] Verify CI workflow completes the `Set image tag` step without errors Closes leeworks-agents/gitea-mobile#20 Generated with Claude Code
AI-Manager added 1 commit 2026-03-26 08:04:10 +00:00
The Gitea Actions workflow used ${{ github.sha }} which is GitHub Actions
syntax. In Gitea Actions the correct context variable is ${{ gitea.sha }}.
This caused the image tag SHA component to be empty.

Closes leeworks-agents/gitea-mobile#20

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
AI-Manager merged commit 2367c19e42 into master 2026-03-26 08:04:26 +00:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: leeworks-agents/gitea-mobile#23