Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,21 @@ jobs:

Write-Host "`nSubmitting new package to Winget..."
./wingetcreate.exe submit --token $env:WINGET_GITHUB_TOKEN $manifestDir

linux-packages:
needs: goreleaser
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Trigger linux-packages repo update
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.LINUX_PACKAGES_DISPATCH_TOKEN }}
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔵 Low (harness-engineering:architecture-reviewer): If LINUX_PACKAGES_DISPATCH_TOKEN is not configured, the dispatch will fail silently (masked by continue-on-error: true). Consider adding a brief comment or guard step so misconfiguration is surfaced, or at minimum document the required secret and its scopes (e.g., repo or workflow) somewhere discoverable (README or a comment in this file).

repository: open-cli-collective/linux-packages
event-type: package-release
client-payload: |-
{
"package": "sfdc",
"version": "${{ github.ref_name }}",
"repo": "open-cli-collective/salesforce-cli"
}
Loading