Skip to content

chore: rename claudetainer to codetainer (#75) #59

chore: rename claudetainer to codetainer (#75)

chore: rename claudetainer to codetainer (#75) #59

Workflow file for this run

name: Build and Push
on:
workflow_dispatch:
push:
branches: [main]
paths-ignore:
- '*.md'
- 'docs/**'
- '!CLAUDE.md'
- 'LICENSE'
- '.github/**'
- '.claude/**'
- 'fly/**'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:latest
build-args: CACHE_BUST=${{ github.run_id }}
cache-from: type=gha
cache-to: type=gha,mode=max