allow to init some user from environment variable to init some users without using the UI #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build multi arch Docker image on PR | |
on: | |
pull_request: | |
jobs: | |
push_to_registry: | |
name: Build multi arch Docker image on PR | |
runs-on: ubuntu-latest | |
steps: | |
# Get the repository's code | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
# https://github.com/docker/setup-qemu-action | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
# https://github.com/docker/setup-buildx-action | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker images | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
# platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 | |
platforms: linux/amd64,linux/arm64 | |
push: false |