mirror of
https://github.com/vegu-ai/talemate.git
synced 2026-04-28 03:29:46 +00:00
Some checks failed
ci / container-build (push) Has been cancelled
ci / deploy-docs (push) Has been cancelled
Python Tests / test (3.10) (push) Has been cancelled
Python Tests / test (3.11) (push) Has been cancelled
Python Tests / test (3.12) (push) Has been cancelled
Python Tests / test (3.13) (push) Has been cancelled
Visual Agent Refactor + Visual Library Character Card Import Refactor Bug fixes and other improvements
51 lines
No EOL
1.3 KiB
YAML
51 lines
No EOL
1.3 KiB
YAML
name: test-container-build
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'prep-*' ]
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
container-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Remove unnecessary files to release disk space
|
|
run: |
|
|
sudo rm -rf \
|
|
"$AGENT_TOOLSDIRECTORY" \
|
|
/opt/ghc \
|
|
/opt/google/chrome \
|
|
/opt/microsoft/msedge \
|
|
/opt/microsoft/powershell \
|
|
/opt/pipx \
|
|
/usr/lib/mono \
|
|
/usr/local/julia* \
|
|
/usr/local/lib/android \
|
|
/usr/local/lib/node_modules \
|
|
/usr/local/share/chromium \
|
|
/usr/local/share/powershell \
|
|
/usr/local/share/powershell \
|
|
/usr/share/dotnet \
|
|
/usr/share/swift
|
|
|
|
- name: Log in to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build & push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: Dockerfile
|
|
push: true
|
|
# Tag with prep suffix to avoid conflicts with production
|
|
tags: |
|
|
ghcr.io/${{ github.repository }}:${{ github.ref_name }} |