Skip to content

Commit 024a0c4

Browse files
committed
ci: push stack
1 parent 70ae93c commit 024a0c4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on: push
2+
3+
jobs:
4+
publish:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: docker/setup-buildx-action@v3
9+
- uses: docker/login-action@v3
10+
with:
11+
registry: ghcr.io
12+
username: ${{ github.repository_owner }}
13+
password: ${{ secrets.GITHUB_TOKEN }}
14+
- run: docker compose alpha publish ghcr.io/withlogicco/postgres
15+
16+
config:
17+
needs: publish
18+
runs-on: ubuntu-latest
19+
env:
20+
COMPOSE_EXPERIMENTAL_OCI_REMOTE: "1"
21+
steps:
22+
- uses: actions/checkout@v4
23+
- run: docker info
24+
- run: docker compose version
25+
- run: docker compose config --no-normalize
26+
- run: docker compose alpha viz --image --indentation-size=4 --networks --ports --spaces

0 commit comments

Comments
 (0)