Skip to content

Commit

Permalink
ci: push stack
Browse files Browse the repository at this point in the history
  • Loading branch information
parisk committed Nov 19, 2024
1 parent 70ae93c commit 024a0c4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on: push

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: docker compose alpha publish ghcr.io/withlogicco/postgres

config:
needs: publish
runs-on: ubuntu-latest
env:
COMPOSE_EXPERIMENTAL_OCI_REMOTE: "1"
steps:
- uses: actions/checkout@v4
- run: docker info
- run: docker compose version
- run: docker compose config --no-normalize
- run: docker compose alpha viz --image --indentation-size=4 --networks --ports --spaces

0 comments on commit 024a0c4

Please sign in to comment.