Keep using Photos.app like you always do. Attic quietly backs up your originals and edits to an S3 bucket you control. One-way, append-only.
3
fork

Configure Feed

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

Install swiftlint and swiftformat on CI runners

+7 -6
+4 -6
.github/workflows/ci.yml
··· 12 12 steps: 13 13 - uses: actions/checkout@v6 14 14 15 + - name: Install tools 16 + run: brew install swiftlint swiftformat 17 + 15 18 - name: SwiftLint 16 19 run: swiftlint lint --quiet 17 20 18 21 - name: SwiftFormat check 19 - run: | 20 - swiftformat --lint . 2>&1 21 - if [ $? -ne 0 ]; then 22 - echo "::error::Code is not formatted. Run 'swiftformat .' locally." 23 - exit 1 24 - fi 22 + run: swiftformat --lint . 25 23 26 24 test: 27 25 runs-on: macos-15
+3
.github/workflows/release.yml
··· 14 14 steps: 15 15 - uses: actions/checkout@v6 16 16 17 + - name: Install tools 18 + run: brew install swiftlint swiftformat 19 + 17 20 - name: SwiftLint 18 21 run: swiftlint lint --quiet 19 22