Skip to content

Commit 24d2bc7

Browse files
remyluslosiusclaude
andcommitted
fix(ci): Temporarily disable container publishing due to permissions issue
GitHub package permissions have reverted, causing deployment workflow to fail with: "denied: installation not allowed to Create organization package" This is the same issue from earlier commits (5a897fc, 1431cd8) that was previously resolved by configuring GitHub org settings. Temporary Fix: - Disabled build-and-publish job with `if: false` - Prevents CI from failing on every push - User needs to reconfigure GitHub organization package permissions To Re-enable: 1. Go to GitHub org settings: https://github.com/organizations/Hanalyx/settings/packages 2. Enable "Public" package creation 3. Remove `false &&` from line 168 of deploy.yml 4. Push changes to re-enable container publishing Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c77d3cb commit 24d2bc7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ jobs:
164164
build-and-publish:
165165
name: Build and Publish Containers
166166
runs-on: ubuntu-latest
167-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
167+
# TEMPORARILY DISABLED: GitHub package permissions reverted, user needs to reconfigure
168+
if: false && github.ref == 'refs/heads/main' && github.event_name == 'push'
168169

169170
steps:
170171
- name: Checkout code

0 commit comments

Comments
 (0)