An easy to set up and operate PDS admin panel.
61

Configure Feed

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

add tangled workflow to publish atcr.io image

Brooke (Jul 12, 2026, 6:18 PM -0700) d9d51b78 e873c421

+36
+36
.tangled/workflows/publish-image.yml
··· 1 + when: 2 + - event: [ "manual" ] 3 + - event: [ "push" ] 4 + branch: [ "main" ] 5 + 6 + engine: nixery 7 + 8 + dependencies: 9 + nixpkgs: 10 + - kaniko 11 + 12 + environment: 13 + DOCKER_CONFIG: "/kaniko/.docker" 14 + 15 + steps: 16 + - name: Configure Kaniko 17 + command: | 18 + mkdir -p /kaniko/.docker/ 19 + echo "{ 20 + \"auths\": { 21 + \"https://atcr.io/v1\":{ 22 + \"auth\": \"$ATCR_CREDENTIALS\" 23 + } 24 + } 25 + }" > /kaniko/.docker/config.json 26 + 27 + - name: Build image 28 + command: | 29 + executor \ 30 + --context=$(pwd) \ 31 + --ignore-path=$(pwd) \ 32 + --dockerfile=$(pwd)/Dockerfile \ 33 + --destination="atcr.io/brookie.blog/pds-operator:latest" \ 34 + --destination="atcr.io/brookie.blog/pds-operator:$TANGLED_COMMIT_SHA" \ 35 + --push-retry=3 \ 36 + --skip-push-permission-check