Skip to content

👻 Bump tokio from 1.43.0 to 1.48.0 (#516) #25

👻 Bump tokio from 1.43.0 to 1.48.0 (#516)

👻 Bump tokio from 1.43.0 to 1.48.0 (#516) #25

Workflow file for this run

name: Multiple Architecture Image Build
on:
workflow_dispatch:
push:
branches:
- "main"
- "release-*"
tags:
- "v*"
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
server-image-build:
uses: project-openubl/release-tools/.github/workflows/build-push-images.yaml@main
with:
registry: "ghcr.io"
image_name: "${{ github.repository_owner }}/openubl-server"
containerfile: "./Dockerfile.server"
architectures: '[ "amd64", "arm64" ]'
secrets:
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}
ui-image-build:
uses: project-openubl/release-tools/.github/workflows/build-push-images.yaml@main
with:
registry: "ghcr.io"
image_name: "${{ github.repository_owner }}/openubl-ui"
containerfile: "./Dockerfile.ui"
architectures: '[ "amd64", "arm64" ]'
extra-args: "--ulimit nofile=4096:4096"
secrets:
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}