native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #142 from onevcat/fix/ghostty-cache-marker-sync

authored by

Wei Wang and committed by
GitHub
5fa7024b d802b4ae

+9 -1
+9 -1
.github/actions/setup-macos/action.yml
··· 32 32 Frameworks/GhosttyKit.xcframework 33 33 Resources/ghostty 34 34 Resources/terminfo 35 - key: ${{ runner.os }}-${{ runner.arch }}-ghostty-${{ env.GHOSTTY_SHA }} 35 + .ghostty_hash 36 + .ghostty_build_stamp 37 + key: ${{ runner.os }}-${{ runner.arch }}-ghostty-v1-${{ env.GHOSTTY_SHA }} 36 38 - name: Build ghostty 37 39 if: steps.ghostty_cache.outputs.cache-hit != 'true' 38 40 shell: bash 39 41 run: | 40 42 set -euo pipefail 41 43 make build-ghostty-xcframework 44 + - name: Sync ghostty marker files 45 + shell: bash 46 + run: | 47 + set -euo pipefail 48 + printf '%s\n' "$GHOSTTY_SHA" > .ghostty_hash 49 + touch .ghostty_build_stamp 42 50 43 51 - name: SPM cache 44 52 uses: actions/cache@v4