Move the flake identity from nix-steipete-tools to nix-openclaw-tools, update transferred upstream repos to openclaw, and drop stale CodexBar/bird packaging. Tests: go test ./...; nix flake show --all-systems; nix build .#gogcli .#goplaces .#summarize .#camsnap .#sonoscli --no-link
39 lines
831 B
YAML
39 lines
831 B
YAML
name: update-tools
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "*/10 * * * *"
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@v12
|
|
|
|
- name: Update tool versions and hashes
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
run: go run ./cmd/update-tools
|
|
|
|
- name: Commit & push if changed
|
|
run: |
|
|
if git diff --quiet; then
|
|
echo "No changes"
|
|
exit 0
|
|
fi
|
|
git config user.name "openclaw-ci"
|
|
git config user.email "ci@openclaw.local"
|
|
git add -A
|
|
git commit -m "update tool releases"
|
|
git push
|