ci: update traefik configuration #12
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: Platform Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
jobs: | |
check-platform: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Check System Info | |
run: | | |
uname -m | |
docker info | grep "OS/Arch" | |
docker buildx ls |