Skip to content

🐛 Sentry secret verification #5

🐛 Sentry secret verification

🐛 Sentry secret verification #5

name: Build & Push Docker Image
on:
push:
branches: [main]
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/cronxco/phoenix:latest
ghcr.io/cronxco/phoenix:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max