tangled
alpha
login
or
join now
evan.jarrett.net
/
git-summarize
1
fork
atom
An AI-powered tool that generates human-readable summaries of git changes using tool calling with a self-hosted LLM
1
fork
atom
overview
issues
pulls
pipelines
try and resolve handle from did
evan.jarrett.net
3 months ago
c9cafd7f
89242738
verified
This commit was signed with the committer's
known signature
.
evan.jarrett.net
SSH Key Fingerprint:
SHA256:bznk0uVPp7XFOl67P0uTM1pCjf2A4ojeP/lsUE7uauQ=
0/1
release.yml
failed
11s
+8
-2
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
release.yml
+8
-2
.tangled/workflows/release.yml
reviewed
···
9
9
10
10
environment:
11
11
IMAGE_REGISTRY: atcr.io
12
12
-
IMAGE_NAME: ${IMAGE_REGISTRY}/${TANGLED_REPO_DID}/${TANGLED_REPO_NAME}
13
12
14
13
steps:
14
14
+
- name: Resolve DID to handle
15
15
+
command: HANDLE=$(curl -sf "https://plc.directory/${TANGLED_REPO_DID}" | grep -o 'at://[^"]*' | head -1 | sed 's|at://||')
16
16
+
17
17
+
- name: set IMAGE_NAME
18
18
+
command: IMAGE_NAME="${IMAGE_REGISTRY}/${HANDLE}/${TANGLED_REPO_NAME}"
19
19
+
15
20
- name: Login to registry
16
21
command: |
17
22
echo "${APP_PASSWORD}" | buildah login \
18
18
-
-u "evan.jarrett.net" \
23
23
+
-u "${HANDLE" \
19
24
--password-stdin \
20
25
${IMAGE_REGISTRY}
21
26
22
27
- name: Build amd64 image
23
28
command: |
29
29
+
echo "${IMAGE_NAME"
24
30
buildah bud \
25
31
--arch amd64 \
26
32
--build-arg TARGETARCH=amd64 \