Add Brazilian Portuguese translation #425
136
.github/workflows/docker-image.yml
vendored
136
.github/workflows/docker-image.yml
vendored
@@ -3,22 +3,18 @@ name: Build and Push Docker Image
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
tag_name:
|
version:
|
||||||
description: "Custom tag name for the Docker image"
|
description: "Version to build (e.g., 1.8.0)"
|
||||||
required: false
|
|
||||||
default: ""
|
|
||||||
registry:
|
|
||||||
description: "Docker registry to push to"
|
|
||||||
required: true
|
required: true
|
||||||
default: "ghcr"
|
production:
|
||||||
type: choice
|
description: "Is this a production build?"
|
||||||
options:
|
required: true
|
||||||
- "ghcr"
|
default: false
|
||||||
- "dockerhub"
|
type: boolean
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: blacksmith-4vcpu-ubuntu-2404
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
@@ -28,102 +24,70 @@ jobs:
|
|||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
with:
|
with:
|
||||||
platforms: arm64
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
|
|
||||||
- name: Setup Blacksmith Builder
|
- name: Setup Docker Buildx
|
||||||
uses: useblacksmith/setup-docker-builder@v1
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Cache npm dependencies
|
- name: Determine tags
|
||||||
uses: actions/cache@v4
|
id: tags
|
||||||
with:
|
run: |
|
||||||
path: |
|
VERSION=${{ github.event.inputs.version }}
|
||||||
~/.npm
|
PROD=${{ github.event.inputs.production }}
|
||||||
node_modules
|
|
||||||
*/*/node_modules
|
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-node-
|
|
||||||
|
|
||||||
- name: Cache Docker layers
|
TAGS=()
|
||||||
uses: actions/cache@v4
|
ALL_TAGS=()
|
||||||
with:
|
|
||||||
path: /tmp/.buildx-cache
|
|
||||||
key: ${{ runner.os }}-buildx-${{ github.ref_name }}-${{ hashFiles('docker/Dockerfile') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-buildx-${{ github.ref_name }}-
|
|
||||||
${{ runner.os }}-buildx-
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
if [ "$PROD" = "true" ]; then
|
||||||
if: github.event.inputs.registry != 'dockerhub'
|
# Production build → push release + latest to both GHCR and Docker Hub
|
||||||
|
TAGS+=("release-$VERSION" "latest")
|
||||||
|
for tag in "${TAGS[@]}"; do
|
||||||
|
ALL_TAGS+=("ghcr.io/lukegus/termix:$tag")
|
||||||
|
ALL_TAGS+=("docker.io/bugattiguy527/termix:$tag")
|
||||||
|
done
|
||||||
|
else
|
||||||
|
# Dev build → push only dev-x.x.x to GHCR
|
||||||
|
TAGS+=("dev-$VERSION")
|
||||||
|
for tag in "${TAGS[@]}"; do
|
||||||
|
ALL_TAGS+=("ghcr.io/lukegus/termix:$tag")
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "ALL_TAGS=${ALL_TAGS[*]}" >> $GITHUB_ENV
|
||||||
|
echo "All tags to build:"
|
||||||
|
printf '%s\n' "${ALL_TAGS[@]}"
|
||||||
|
|
||||||
|
- name: Login to GHCR
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: lukegus
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GHCR_TOKEN }}
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub (prod only)
|
||||||
if: github.event.inputs.registry == 'dockerhub'
|
if: ${{ github.event.inputs.production == 'true' }}
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
username: bugattiguy527
|
username: bugattiguy527
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Determine Docker image tag
|
- name: Build and push multi-arch image
|
||||||
run: |
|
uses: docker/build-push-action@v5
|
||||||
REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')
|
|
||||||
echo "REPO_OWNER=$REPO_OWNER" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
if [ "${{ github.event.inputs.tag_name }}" != "" ]; then
|
|
||||||
IMAGE_TAG="${{ github.event.inputs.tag_name }}"
|
|
||||||
elif [ "${{ github.ref }}" == "refs/heads/main" ]; then
|
|
||||||
IMAGE_TAG="latest"
|
|
||||||
elif [ "${{ github.ref }}" == "refs/heads/development" ]; then
|
|
||||||
IMAGE_TAG="development-latest"
|
|
||||||
else
|
|
||||||
IMAGE_TAG="${{ github.ref_name }}"
|
|
||||||
fi
|
|
||||||
echo "IMAGE_TAG=$IMAGE_TAG" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# Determine registry and image name
|
|
||||||
if [ "${{ github.event.inputs.registry }}" == "dockerhub" ]; then
|
|
||||||
echo "REGISTRY=docker.io" >> $GITHUB_ENV
|
|
||||||
echo "IMAGE_NAME=bugattiguy527/termix" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "REGISTRY=ghcr.io" >> $GITHUB_ENV
|
|
||||||
echo "IMAGE_NAME=$REPO_OWNER/termix" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Build and Push Multi-Arch Docker Image
|
|
||||||
uses: useblacksmith/build-push-action@v2
|
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./docker/Dockerfile
|
file: ./docker/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
|
tags: ${{ env.ALL_TAGS }}
|
||||||
labels: |
|
|
||||||
org.opencontainers.image.source=https://github.com/${{ github.repository }}
|
|
||||||
org.opencontainers.image.revision=${{ github.sha }}
|
|
||||||
build-args: |
|
build-args: |
|
||||||
BUILDKIT_INLINE_CACHE=1
|
BUILDKIT_INLINE_CACHE=1
|
||||||
BUILDKIT_CONTEXT_KEEP_GIT_DIR=1
|
BUILDKIT_CONTEXT_KEEP_GIT_DIR=1
|
||||||
|
labels: |
|
||||||
|
org.opencontainers.image.source=https://github.com/${{ github.repository }}
|
||||||
|
org.opencontainers.image.revision=${{ github.sha }}
|
||||||
outputs: type=registry,compression=zstd,compression-level=19
|
outputs: type=registry,compression=zstd,compression-level=19
|
||||||
|
|
||||||
- name: Move cache
|
- name: Cleanup Docker
|
||||||
run: |
|
|
||||||
rm -rf /tmp/.buildx-cache
|
|
||||||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
|
||||||
|
|
||||||
- name: Delete all untagged image versions
|
|
||||||
if: success() && github.event.inputs.registry != 'dockerhub'
|
|
||||||
uses: quartx-analytics/ghcr-cleaner@v1
|
|
||||||
with:
|
|
||||||
owner-type: user
|
|
||||||
token: ${{ secrets.GHCR_TOKEN }}
|
|
||||||
repository-owner: ${{ github.repository_owner }}
|
|
||||||
delete-untagged: true
|
|
||||||
|
|
||||||
- name: Cleanup Docker Images Locally
|
|
||||||
if: always()
|
if: always()
|
||||||
run: |
|
run: |
|
||||||
docker image prune -af
|
docker image prune -af
|
||||||
|
|||||||
1434
src/locales/pt-BR/translation.json
Normal file
1434
src/locales/pt-BR/translation.json
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user