Skip to content

chore: add more packages to conversion and language #2

chore: add more packages to conversion and language

chore: add more packages to conversion and language #2

Workflow file for this run

name: Build and Push voltaserve/language
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "language/**"
pull_request:
branches:
- main
paths:
- "language/**"
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set Up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v3
with:
context: ./language
push: true
tags: voltaserve/language:latest
platforms: linux/amd64,linux/arm64