alpha
Login
or
Join now
ptr.pet
/
tranquil-pds
forked from
tranquil.farm/tranquil-pds
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Our Personal Data Server from scratch!
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat(ci): publish image on commit
author
HigherOrderLogic
committer
tangled.org
date
4 months ago
(Mar 21, 2026, 2:10 AM UTC)
commit
00d71fd3
00d71fd3d6f2b252e2c1c9ea24a16a01b55390f7
parent
c8bb4c90
c8bb4c90766756737b5d2a3e314f593e6bc0bde8
+23
1 changed file
Expand all
Collapse all
Unified
Split
.tangled
workflows
publish-image.yml
+23
.tangled/workflows/publish-image.yml
View file
Reviewed
···
1
1
+
when:
2
2
+
- event: ["push"]
3
3
+
branches: main
4
4
+
5
5
+
engine: nixery
6
6
+
7
7
+
dependencies:
8
8
+
nixpkgs:
9
9
+
- podman
10
10
+
11
11
+
steps:
12
12
+
- name: Create podman config
13
13
+
command: |
14
14
+
mkdir -p ~/.config/containers
15
15
+
echo "unqualified-search-registries = [\"docker.io\"]" >> ~/.config/containers/registries.conf
16
16
+
17
17
+
- name: Build image
18
18
+
command: |
19
19
+
podman build . -t tranquil-pds:latest -t "tranquil-pds:$TANGLED_COMMIT_SHA"
20
20
+
21
21
+
- name: Publish image
22
22
+
command: |
23
23
+
podman push --creds "$ATCR_USERNAME:$ATCR_PASSWORD" tranquil-pds:latest atcr.io/tranquild-pds/tranquil